結果

問題 No.71 そろばん
ユーザー kano_townkano_town
提出日時 2014-11-18 23:51:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 69 ms / 5,000 ms
コード長 463 bytes
コンパイル時間 3,474 ms
コンパイル使用メモリ 74,704 KB
実行使用メモリ 51,152 KB
最終ジャッジ日時 2024-06-10 21:07:02
合計ジャッジ時間 4,864 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
50,204 KB
testcase_01 AC 46 ms
50,144 KB
testcase_02 AC 62 ms
50,864 KB
testcase_03 AC 59 ms
50,484 KB
testcase_04 AC 61 ms
50,984 KB
testcase_05 AC 61 ms
51,016 KB
testcase_06 AC 62 ms
50,756 KB
testcase_07 AC 60 ms
50,544 KB
testcase_08 AC 59 ms
50,504 KB
testcase_09 AC 64 ms
50,692 KB
testcase_10 AC 64 ms
50,832 KB
testcase_11 AC 58 ms
50,184 KB
testcase_12 AC 58 ms
50,344 KB
testcase_13 AC 60 ms
50,972 KB
testcase_14 AC 56 ms
50,512 KB
testcase_15 AC 58 ms
50,952 KB
testcase_16 AC 53 ms
50,224 KB
testcase_17 AC 69 ms
50,468 KB
testcase_18 AC 60 ms
50,780 KB
testcase_19 AC 61 ms
51,104 KB
testcase_20 AC 62 ms
50,756 KB
testcase_21 AC 69 ms
50,756 KB
testcase_22 AC 63 ms
51,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Yukicoder70 {

	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		long n = Integer.parseInt(br.readLine());
		long max = -1;
		
		for (int i = 1; i < n; i++) {
			max = Math.max(max, i * (n - i + 1) + n - i);
		}
		System.out.println(max);

	}

}
0