結果

問題 No.71 そろばん
ユーザー nebukuro09nebukuro09
提出日時 2016-11-01 15:32:18
言語 Python2
(2.7.18)
結果
AC  
実行時間 167 ms / 5,000 ms
コード長 56 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 38,028 KB
最終ジャッジ日時 2024-11-25 00:53:53
合計ジャッジ時間 3,119 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,816 KB
testcase_01 AC 10 ms
6,820 KB
testcase_02 AC 167 ms
38,028 KB
testcase_03 AC 71 ms
18,960 KB
testcase_04 AC 94 ms
24,356 KB
testcase_05 AC 137 ms
32,956 KB
testcase_06 AC 147 ms
36,340 KB
testcase_07 AC 98 ms
25,740 KB
testcase_08 AC 76 ms
20,096 KB
testcase_09 AC 148 ms
35,468 KB
testcase_10 AC 98 ms
24,664 KB
testcase_11 AC 31 ms
10,496 KB
testcase_12 AC 57 ms
16,000 KB
testcase_13 AC 156 ms
36,524 KB
testcase_14 AC 71 ms
18,688 KB
testcase_15 AC 129 ms
30,336 KB
testcase_16 AC 31 ms
10,368 KB
testcase_17 AC 76 ms
20,272 KB
testcase_18 AC 125 ms
31,504 KB
testcase_19 AC 149 ms
36,004 KB
testcase_20 AC 152 ms
35,648 KB
testcase_21 AC 74 ms
19,648 KB
testcase_22 AC 110 ms
28,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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