結果

問題 No.71 そろばん
ユーザー nebukuro09nebukuro09
提出日時 2016-11-01 15:32:18
言語 Python2
(2.7.18)
結果
AC  
実行時間 162 ms / 5,000 ms
コード長 56 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 38,016 KB
最終ジャッジ日時 2024-05-03 20:39:12
合計ジャッジ時間 3,107 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,272 KB
testcase_01 AC 10 ms
6,272 KB
testcase_02 AC 162 ms
38,016 KB
testcase_03 AC 75 ms
18,936 KB
testcase_04 AC 94 ms
24,524 KB
testcase_05 AC 132 ms
32,896 KB
testcase_06 AC 150 ms
36,316 KB
testcase_07 AC 102 ms
25,740 KB
testcase_08 AC 73 ms
20,096 KB
testcase_09 AC 139 ms
35,456 KB
testcase_10 AC 92 ms
24,448 KB
testcase_11 AC 27 ms
10,368 KB
testcase_12 AC 52 ms
15,744 KB
testcase_13 AC 148 ms
36,584 KB
testcase_14 AC 66 ms
18,432 KB
testcase_15 AC 118 ms
30,464 KB
testcase_16 AC 29 ms
10,240 KB
testcase_17 AC 72 ms
20,224 KB
testcase_18 AC 127 ms
31,232 KB
testcase_19 AC 148 ms
35,920 KB
testcase_20 AC 144 ms
35,584 KB
testcase_21 AC 72 ms
19,436 KB
testcase_22 AC 112 ms
27,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=input()
print max((N-d)*(d+1)+d for d in range(1,N+1))
0