結果

問題 No.71 そろばん
ユーザー htensaihtensai
提出日時 2019-12-06 11:52:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 285 bytes
コンパイル時間 2,030 ms
コンパイル使用メモリ 74,108 KB
実行使用メモリ 41,864 KB
最終ジャッジ日時 2024-06-02 09:16:58
合計ジャッジ時間 5,140 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
41,864 KB
testcase_01 AC 105 ms
41,344 KB
testcase_02 AC 118 ms
41,076 KB
testcase_03 AC 105 ms
41,332 KB
testcase_04 AC 111 ms
40,276 KB
testcase_05 AC 118 ms
41,412 KB
testcase_06 AC 107 ms
40,088 KB
testcase_07 AC 114 ms
40,692 KB
testcase_08 AC 114 ms
41,072 KB
testcase_09 AC 117 ms
41,328 KB
testcase_10 AC 104 ms
41,076 KB
testcase_11 AC 105 ms
41,212 KB
testcase_12 AC 117 ms
41,076 KB
testcase_13 AC 110 ms
40,320 KB
testcase_14 AC 109 ms
40,040 KB
testcase_15 AC 115 ms
41,216 KB
testcase_16 AC 106 ms
40,240 KB
testcase_17 AC 108 ms
41,088 KB
testcase_18 AC 116 ms
40,988 KB
testcase_19 AC 117 ms
41,488 KB
testcase_20 AC 119 ms
41,316 KB
testcase_21 AC 109 ms
40,396 KB
testcase_22 AC 118 ms
41,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextInt();
		long max = 0;
		for (int i = 1; i < n; i++) {
		    max = Math.max((i + 1) * (n - i) + i, max);
		}
		System.out.println(max);
   }
}

0