結果

問題 No.1177 余りは?
ユーザー ryusukeryusuke
提出日時 2022-08-10 21:28:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 308 ms / 1,000 ms
コード長 127 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 79,424 KB
最終ジャッジ日時 2024-09-21 07:35:13
合計ジャッジ時間 5,588 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
71,956 KB
testcase_01 AC 308 ms
79,424 KB
testcase_02 AC 80 ms
70,900 KB
testcase_03 AC 190 ms
74,420 KB
testcase_04 AC 101 ms
71,948 KB
testcase_05 AC 121 ms
73,496 KB
testcase_06 AC 49 ms
64,184 KB
testcase_07 AC 47 ms
62,748 KB
testcase_08 AC 245 ms
77,188 KB
testcase_09 AC 216 ms
76,864 KB
testcase_10 AC 38 ms
53,876 KB
testcase_11 AC 132 ms
72,976 KB
testcase_12 AC 44 ms
61,604 KB
testcase_13 AC 58 ms
67,664 KB
testcase_14 AC 68 ms
70,972 KB
testcase_15 AC 93 ms
71,368 KB
testcase_16 AC 75 ms
70,828 KB
testcase_17 AC 252 ms
78,376 KB
testcase_18 AC 109 ms
72,012 KB
testcase_19 AC 154 ms
74,328 KB
testcase_20 AC 60 ms
71,148 KB
testcase_21 AC 132 ms
73,460 KB
testcase_22 AC 225 ms
76,640 KB
testcase_23 AC 110 ms
72,724 KB
testcase_24 AC 75 ms
70,944 KB
testcase_25 AC 194 ms
75,500 KB
testcase_26 AC 230 ms
77,392 KB
testcase_27 AC 54 ms
67,668 KB
testcase_28 AC 130 ms
73,092 KB
testcase_29 AC 124 ms
72,764 KB
testcase_30 AC 119 ms
73,144 KB
testcase_31 AC 152 ms
73,884 KB
testcase_32 AC 36 ms
52,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p, k = map(int, input().split())

ans = 10 ** (p - 1) // p

if 10 ** (p - 1) % p >= k:
    ans += 1

print(ans % (10 ** 9 + 7))
0