結果

問題 No.1177 余りは?
ユーザー ntudantuda
提出日時 2021-11-23 18:47:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 318 ms / 1,000 ms
コード長 135 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,000 KB
最終ジャッジ日時 2024-06-25 15:41:39
合計ジャッジ時間 6,286 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
72,320 KB
testcase_01 AC 318 ms
80,000 KB
testcase_02 AC 92 ms
71,296 KB
testcase_03 AC 207 ms
74,880 KB
testcase_04 AC 115 ms
72,192 KB
testcase_05 AC 135 ms
73,344 KB
testcase_06 AC 57 ms
62,976 KB
testcase_07 AC 55 ms
62,336 KB
testcase_08 AC 267 ms
77,184 KB
testcase_09 AC 235 ms
77,056 KB
testcase_10 AC 41 ms
52,736 KB
testcase_11 AC 148 ms
73,344 KB
testcase_12 AC 53 ms
60,416 KB
testcase_13 AC 67 ms
67,328 KB
testcase_14 AC 80 ms
70,912 KB
testcase_15 AC 104 ms
72,192 KB
testcase_16 AC 87 ms
70,912 KB
testcase_17 AC 274 ms
78,080 KB
testcase_18 AC 125 ms
72,320 KB
testcase_19 AC 174 ms
74,240 KB
testcase_20 AC 73 ms
71,040 KB
testcase_21 AC 153 ms
73,344 KB
testcase_22 AC 250 ms
77,312 KB
testcase_23 AC 128 ms
72,832 KB
testcase_24 AC 88 ms
71,168 KB
testcase_25 AC 213 ms
75,008 KB
testcase_26 AC 258 ms
77,824 KB
testcase_27 AC 67 ms
67,072 KB
testcase_28 AC 148 ms
73,600 KB
testcase_29 AC 137 ms
73,216 KB
testcase_30 AC 135 ms
73,472 KB
testcase_31 AC 169 ms
73,856 KB
testcase_32 AC 41 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p, k = map(int, input().split())
MOD = 10 ** 9 + 7
ans = 10 ** (p - 1) // p
x = 10 ** (p - 1) % p
if x > k:
    ans += 1
print(ans%MOD)
0