結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,444 KB
testcase_01 AC 30 ms
51,904 KB
testcase_02 AC 30 ms
52,620 KB
testcase_03 AC 31 ms
52,620 KB
testcase_04 AC 27 ms
51,868 KB
testcase_05 AC 28 ms
52,560 KB
testcase_06 AC 29 ms
52,072 KB
testcase_07 AC 29 ms
52,004 KB
testcase_08 AC 29 ms
52,408 KB
testcase_09 AC 28 ms
52,288 KB
testcase_10 AC 28 ms
52,516 KB
testcase_11 AC 29 ms
51,928 KB
testcase_12 AC 29 ms
52,100 KB
testcase_13 AC 29 ms
52,064 KB
testcase_14 AC 29 ms
52,880 KB
testcase_15 AC 27 ms
52,772 KB
testcase_16 AC 31 ms
53,552 KB
testcase_17 AC 28 ms
51,852 KB
testcase_18 AC 28 ms
53,164 KB
testcase_19 AC 29 ms
52,944 KB
testcase_20 AC 30 ms
52,660 KB
testcase_21 AC 32 ms
52,192 KB
testcase_22 AC 30 ms
51,960 KB
testcase_23 AC 30 ms
52,544 KB
testcase_24 AC 30 ms
52,740 KB
testcase_25 AC 30 ms
52,068 KB
testcase_26 AC 29 ms
53,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans=max(A*(B+1)+B,B*(A+1)+A)
print(ans%(10**6+7))
0