結果

問題 No.71 そろばん
ユーザー syunsukesyunsuke
提出日時 2020-09-14 23:41:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 32 ms / 5,000 ms
コード長 60 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 53,636 KB
最終ジャッジ日時 2024-06-22 01:01:12
合計ジャッジ時間 1,681 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,220 KB
testcase_01 AC 32 ms
53,192 KB
testcase_02 AC 28 ms
52,768 KB
testcase_03 AC 28 ms
52,560 KB
testcase_04 AC 27 ms
52,732 KB
testcase_05 AC 27 ms
52,232 KB
testcase_06 AC 28 ms
52,212 KB
testcase_07 AC 28 ms
53,636 KB
testcase_08 AC 27 ms
52,488 KB
testcase_09 AC 28 ms
51,920 KB
testcase_10 AC 31 ms
52,000 KB
testcase_11 AC 30 ms
52,972 KB
testcase_12 AC 29 ms
53,204 KB
testcase_13 AC 26 ms
52,428 KB
testcase_14 AC 31 ms
51,996 KB
testcase_15 AC 30 ms
51,832 KB
testcase_16 AC 29 ms
51,832 KB
testcase_17 AC 30 ms
53,176 KB
testcase_18 AC 30 ms
53,368 KB
testcase_19 AC 32 ms
52,152 KB
testcase_20 AC 31 ms
52,140 KB
testcase_21 AC 30 ms
51,892 KB
testcase_22 AC 27 ms
52,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=N//2
B=N-A

print(max(A*(B+1)+B,B*(A+1)+A))
0