結果

問題 No.71 そろばん
ユーザー JunOnumaJunOnuma
提出日時 2017-06-15 10:57:37
言語 Python2
(2.7.18)
結果
AC  
実行時間 360 ms / 5,000 ms
コード長 86 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 38,096 KB
最終ジャッジ日時 2024-09-25 02:08:52
合計ジャッジ時間 5,643 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,812 KB
testcase_01 AC 11 ms
6,944 KB
testcase_02 AC 360 ms
38,096 KB
testcase_03 AC 151 ms
19,072 KB
testcase_04 AC 211 ms
24,428 KB
testcase_05 AC 299 ms
32,768 KB
testcase_06 AC 338 ms
36,164 KB
testcase_07 AC 224 ms
25,856 KB
testcase_08 AC 161 ms
20,096 KB
testcase_09 AC 326 ms
35,464 KB
testcase_10 AC 211 ms
24,384 KB
testcase_11 AC 57 ms
10,496 KB
testcase_12 AC 116 ms
15,616 KB
testcase_13 AC 339 ms
36,336 KB
testcase_14 AC 145 ms
18,532 KB
testcase_15 AC 275 ms
30,296 KB
testcase_16 AC 57 ms
10,240 KB
testcase_17 AC 164 ms
20,224 KB
testcase_18 AC 284 ms
31,308 KB
testcase_19 AC 332 ms
35,900 KB
testcase_20 AC 330 ms
35,544 KB
testcase_21 AC 157 ms
19,544 KB
testcase_22 AC 247 ms
27,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(raw_input())
m = 0
for i in range(1,n):
    m = max(m, i+(i+1)*(n-i))
print m
0