結果

問題 No.111 あばばばば
ユーザー koukonkokoukonko
提出日時 2015-12-11 18:14:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 463 ms / 5,000 ms
コード長 611 bytes
コンパイル時間 4,377 ms
コンパイル使用メモリ 73,920 KB
実行使用メモリ 37,876 KB
最終ジャッジ日時 2024-09-15 08:13:27
合計ジャッジ時間 3,909 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,068 KB
testcase_01 AC 53 ms
36,828 KB
testcase_02 AC 55 ms
36,864 KB
testcase_03 AC 463 ms
37,760 KB
testcase_04 AC 51 ms
36,664 KB
testcase_05 AC 58 ms
36,840 KB
testcase_06 AC 66 ms
37,524 KB
testcase_07 AC 103 ms
37,876 KB
testcase_08 AC 249 ms
37,260 KB
testcase_09 AC 51 ms
37,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) {
		BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));

		try {
			long line = Long.parseLong(buff.readLine());

			long ans = line - 2;
			long pro = line - 2;


			for(int i = 5; i <= line; i += 2){
				pro -= 2;
				ans += pro;
			}

			System.out.println(ans);

		} catch (NumberFormatException e) {
			e.getStackTrace();
		} catch (IOException e) {
			e.getStackTrace();
		} catch (Exception e) {
			e.getStackTrace();
		}
	}
}
0