結果

問題 No.1177 余りは?
ユーザー Kiri8128Kiri8128
提出日時 2020-08-21 21:57:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 82 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 12,444 KB
最終ジャッジ日時 2024-04-23 06:37:41
合計ジャッジ時間 4,750 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
11,392 KB
testcase_01 AC 297 ms
12,444 KB
testcase_02 AC 66 ms
11,136 KB
testcase_03 AC 182 ms
11,724 KB
testcase_04 AC 85 ms
11,392 KB
testcase_05 AC 107 ms
11,520 KB
testcase_06 AC 37 ms
10,880 KB
testcase_07 AC 35 ms
11,008 KB
testcase_08 AC 232 ms
12,112 KB
testcase_09 AC 200 ms
12,080 KB
testcase_10 AC 26 ms
10,624 KB
testcase_11 AC 121 ms
11,480 KB
testcase_12 AC 38 ms
10,752 KB
testcase_13 AC 48 ms
11,136 KB
testcase_14 AC 58 ms
11,008 KB
testcase_15 AC 79 ms
11,392 KB
testcase_16 AC 59 ms
11,136 KB
testcase_17 AC 241 ms
12,288 KB
testcase_18 AC 97 ms
11,392 KB
testcase_19 AC 150 ms
11,760 KB
testcase_20 AC 45 ms
11,136 KB
testcase_21 AC 129 ms
11,520 KB
testcase_22 AC 221 ms
11,952 KB
testcase_23 AC 100 ms
11,392 KB
testcase_24 AC 61 ms
11,136 KB
testcase_25 AC 184 ms
11,908 KB
testcase_26 AC 225 ms
11,964 KB
testcase_27 AC 44 ms
11,008 KB
testcase_28 AC 119 ms
11,520 KB
testcase_29 AC 109 ms
11,648 KB
testcase_30 AC 106 ms
11,392 KB
testcase_31 AC 150 ms
11,748 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7
p, k = map(int, input().split())
print(10 ** (p - 1) // p % mod)
0