結果

問題 No.71 そろばん
ユーザー flippergoflippergo
提出日時 2024-12-02 11:58:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 86 bytes
コンパイル時間 742 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 59,104 KB
最終ジャッジ日時 2024-12-02 11:58:47
合計ジャッジ時間 3,127 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,940 KB
testcase_01 AC 40 ms
51,340 KB
testcase_02 AC 50 ms
58,760 KB
testcase_03 AC 50 ms
58,936 KB
testcase_04 AC 49 ms
58,560 KB
testcase_05 AC 47 ms
58,804 KB
testcase_06 AC 48 ms
58,292 KB
testcase_07 AC 47 ms
58,812 KB
testcase_08 AC 45 ms
58,792 KB
testcase_09 AC 48 ms
58,916 KB
testcase_10 AC 47 ms
58,388 KB
testcase_11 AC 45 ms
58,900 KB
testcase_12 AC 46 ms
58,460 KB
testcase_13 AC 50 ms
58,612 KB
testcase_14 AC 46 ms
59,016 KB
testcase_15 AC 49 ms
58,512 KB
testcase_16 AC 45 ms
58,424 KB
testcase_17 AC 48 ms
58,952 KB
testcase_18 AC 48 ms
58,732 KB
testcase_19 AC 48 ms
58,616 KB
testcase_20 AC 55 ms
59,104 KB
testcase_21 AC 47 ms
58,756 KB
testcase_22 AC 50 ms
58,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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