結果

問題 No.71 そろばん
ユーザー bellangeldindonbellangeldindon
提出日時 2019-04-26 11:02:53
言語 Python2
(2.7.18)
結果
AC  
実行時間 266 ms / 5,000 ms
コード長 104 bytes
コンパイル時間 875 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 38,052 KB
最終ジャッジ日時 2024-11-24 00:52:35
合計ジャッジ時間 4,902 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,144 KB
testcase_01 AC 11 ms
6,144 KB
testcase_02 AC 266 ms
38,052 KB
testcase_03 AC 113 ms
19,072 KB
testcase_04 AC 158 ms
24,576 KB
testcase_05 AC 223 ms
32,768 KB
testcase_06 AC 252 ms
36,224 KB
testcase_07 AC 167 ms
25,600 KB
testcase_08 AC 121 ms
19,840 KB
testcase_09 AC 246 ms
35,328 KB
testcase_10 AC 159 ms
24,448 KB
testcase_11 AC 45 ms
10,368 KB
testcase_12 AC 88 ms
15,744 KB
testcase_13 AC 251 ms
36,224 KB
testcase_14 AC 110 ms
18,304 KB
testcase_15 AC 205 ms
30,208 KB
testcase_16 AC 44 ms
10,240 KB
testcase_17 AC 125 ms
20,224 KB
testcase_18 AC 212 ms
31,360 KB
testcase_19 AC 252 ms
35,840 KB
testcase_20 AC 246 ms
35,328 KB
testcase_21 AC 118 ms
19,456 KB
testcase_22 AC 184 ms
27,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
max = 0
for i in range(0, N+1):
	x = i + (i+1)*(N-i)
	if max < x: max = x
print max
0