結果

問題 No.71 そろばん
ユーザー gorugo30gorugo30
提出日時 2021-02-26 16:49:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 5,000 ms
コード長 119 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 60,376 KB
最終ジャッジ日時 2024-10-02 09:05:44
合計ジャッジ時間 2,142 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,372 KB
testcase_01 AC 35 ms
52,876 KB
testcase_02 AC 42 ms
58,364 KB
testcase_03 AC 39 ms
58,516 KB
testcase_04 AC 41 ms
59,568 KB
testcase_05 AC 41 ms
58,980 KB
testcase_06 AC 42 ms
58,792 KB
testcase_07 AC 42 ms
59,724 KB
testcase_08 AC 40 ms
59,124 KB
testcase_09 AC 46 ms
59,556 KB
testcase_10 AC 41 ms
58,556 KB
testcase_11 AC 39 ms
58,908 KB
testcase_12 AC 39 ms
59,972 KB
testcase_13 AC 46 ms
59,444 KB
testcase_14 AC 41 ms
59,496 KB
testcase_15 AC 42 ms
59,204 KB
testcase_16 AC 39 ms
58,768 KB
testcase_17 AC 40 ms
58,760 KB
testcase_18 AC 41 ms
59,444 KB
testcase_19 AC 40 ms
59,080 KB
testcase_20 AC 43 ms
59,476 KB
testcase_21 AC 38 ms
60,376 KB
testcase_22 AC 39 ms
59,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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