結果

問題 No.71 そろばん
ユーザー srup٩(๑`н´๑)۶srup٩(๑`н´๑)۶
提出日時 2016-08-26 14:52:56
言語 Python2
(2.7.18)
結果
AC  
実行時間 446 ms / 5,000 ms
コード長 107 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 38,064 KB
最終ジャッジ日時 2024-11-08 04:06:35
合計ジャッジ時間 7,018 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,528 KB
testcase_01 AC 11 ms
6,528 KB
testcase_02 AC 446 ms
38,064 KB
testcase_03 AC 183 ms
18,944 KB
testcase_04 AC 259 ms
24,576 KB
testcase_05 AC 374 ms
32,900 KB
testcase_06 AC 418 ms
36,276 KB
testcase_07 AC 276 ms
25,988 KB
testcase_08 AC 199 ms
20,224 KB
testcase_09 AC 403 ms
35,456 KB
testcase_10 AC 258 ms
24,668 KB
testcase_11 AC 68 ms
10,368 KB
testcase_12 AC 141 ms
16,000 KB
testcase_13 AC 421 ms
36,364 KB
testcase_14 AC 179 ms
18,560 KB
testcase_15 AC 337 ms
30,400 KB
testcase_16 AC 68 ms
10,240 KB
testcase_17 AC 201 ms
20,224 KB
testcase_18 AC 352 ms
31,356 KB
testcase_19 AC 417 ms
35,996 KB
testcase_20 AC 406 ms
35,524 KB
testcase_21 AC 191 ms
19,500 KB
testcase_22 AC 304 ms
27,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = input()

ans = 0
for x in range(1, n + 1):
	now = -(x * x) + (x * n) + n
	ans = max(ans, now)
print ans
0