結果

問題 No.72 そろばん Med
ユーザー KudeKude
提出日時 2021-01-27 05:28:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 5,000 ms
コード長 79 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,896 KB
実行使用メモリ 53,280 KB
最終ジャッジ日時 2024-06-24 03:24:17
合計ジャッジ時間 2,524 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,764 KB
testcase_01 AC 42 ms
53,280 KB
testcase_02 AC 42 ms
52,356 KB
testcase_03 AC 38 ms
52,832 KB
testcase_04 AC 43 ms
52,908 KB
testcase_05 AC 42 ms
52,612 KB
testcase_06 AC 42 ms
52,572 KB
testcase_07 AC 48 ms
52,152 KB
testcase_08 AC 42 ms
52,752 KB
testcase_09 AC 42 ms
52,120 KB
testcase_10 AC 39 ms
52,484 KB
testcase_11 AC 40 ms
52,188 KB
testcase_12 AC 41 ms
52,376 KB
testcase_13 AC 39 ms
52,892 KB
testcase_14 AC 39 ms
52,492 KB
testcase_15 AC 41 ms
52,180 KB
testcase_16 AC 42 ms
52,288 KB
testcase_17 AC 43 ms
52,820 KB
testcase_18 AC 41 ms
52,248 KB
testcase_19 AC 44 ms
52,704 KB
testcase_20 AC 42 ms
52,680 KB
testcase_21 AC 41 ms
52,192 KB
testcase_22 AC 42 ms
51,812 KB
testcase_23 AC 39 ms
52,332 KB
testcase_24 AC 42 ms
53,124 KB
testcase_25 AC 43 ms
52,112 KB
testcase_26 AC 42 ms
52,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
n1 = n // 2
n2 = n - n1
print((~n1 * ~n2 - 1) % (10 ** 6 + 7))
0