結果

問題 No.71 そろばん
ユーザー zombietanzombietan
提出日時 2016-05-12 18:52:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 585 ms / 5,000 ms
コード長 102 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 50,644 KB
最終ジャッジ日時 2024-10-05 14:00:06
合計ジャッジ時間 8,476 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 AC 27 ms
10,496 KB
testcase_02 AC 585 ms
50,644 KB
testcase_03 AC 230 ms
30,192 KB
testcase_04 AC 314 ms
32,356 KB
testcase_05 AC 520 ms
49,996 KB
testcase_06 AC 538 ms
50,112 KB
testcase_07 AC 364 ms
33,244 KB
testcase_08 AC 243 ms
30,296 KB
testcase_09 AC 532 ms
50,020 KB
testcase_10 AC 319 ms
32,352 KB
testcase_11 AC 84 ms
15,524 KB
testcase_12 AC 183 ms
21,832 KB
testcase_13 AC 535 ms
50,048 KB
testcase_14 AC 210 ms
30,212 KB
testcase_15 AC 430 ms
50,044 KB
testcase_16 AC 86 ms
15,776 KB
testcase_17 AC 232 ms
30,276 KB
testcase_18 AC 457 ms
50,012 KB
testcase_19 AC 546 ms
49,912 KB
testcase_20 AC 546 ms
50,056 KB
testcase_21 AC 243 ms
30,276 KB
testcase_22 AC 382 ms
50,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

m = set()
for n in range(1,N+1):
    p = n + (n+1)*(N-n)
    m.add(p)

print(max(m))
0