結果

問題 No.71 そろばん
ユーザー tnoda_tnoda_
提出日時 2015-08-05 20:20:02
言語 Python2
(2.7.18)
結果
AC  
実行時間 151 ms / 5,000 ms
コード長 60 bytes
コンパイル時間 45 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 38,124 KB
最終ジャッジ日時 2024-07-18 03:32:17
合計ジャッジ時間 2,967 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,812 KB
testcase_01 AC 9 ms
6,940 KB
testcase_02 AC 151 ms
38,124 KB
testcase_03 AC 69 ms
19,104 KB
testcase_04 AC 100 ms
24,704 KB
testcase_05 AC 127 ms
33,072 KB
testcase_06 AC 143 ms
36,420 KB
testcase_07 AC 97 ms
25,828 KB
testcase_08 AC 72 ms
20,208 KB
testcase_09 AC 141 ms
35,408 KB
testcase_10 AC 92 ms
24,708 KB
testcase_11 AC 30 ms
10,496 KB
testcase_12 AC 54 ms
16,004 KB
testcase_13 AC 147 ms
36,436 KB
testcase_14 AC 65 ms
18,560 KB
testcase_15 AC 115 ms
30,544 KB
testcase_16 AC 26 ms
10,496 KB
testcase_17 AC 70 ms
20,448 KB
testcase_18 AC 129 ms
31,464 KB
testcase_19 AC 146 ms
36,140 KB
testcase_20 AC 139 ms
35,648 KB
testcase_21 AC 67 ms
19,712 KB
testcase_22 AC 104 ms
28,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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