結果

問題 No.1177 余りは?
ユーザー dangodango
提出日時 2023-07-15 19:28:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 1,000 ms
コード長 85 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,692 KB
実行使用メモリ 75,944 KB
最終ジャッジ日時 2024-09-17 04:13:04
合計ジャッジ時間 4,324 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
71,748 KB
testcase_01 AC 178 ms
75,944 KB
testcase_02 AC 62 ms
71,364 KB
testcase_03 AC 121 ms
73,492 KB
testcase_04 AC 74 ms
71,996 KB
testcase_05 AC 83 ms
72,512 KB
testcase_06 AC 39 ms
58,120 KB
testcase_07 AC 39 ms
57,344 KB
testcase_08 AC 139 ms
75,156 KB
testcase_09 AC 137 ms
74,576 KB
testcase_10 AC 33 ms
52,616 KB
testcase_11 AC 87 ms
72,448 KB
testcase_12 AC 41 ms
56,292 KB
testcase_13 AC 46 ms
60,808 KB
testcase_14 AC 51 ms
68,480 KB
testcase_15 AC 63 ms
71,644 KB
testcase_16 AC 52 ms
69,428 KB
testcase_17 AC 141 ms
75,208 KB
testcase_18 AC 81 ms
72,052 KB
testcase_19 AC 102 ms
73,100 KB
testcase_20 AC 45 ms
62,016 KB
testcase_21 AC 89 ms
72,808 KB
testcase_22 AC 132 ms
74,464 KB
testcase_23 AC 73 ms
72,316 KB
testcase_24 AC 59 ms
70,968 KB
testcase_25 AC 123 ms
73,668 KB
testcase_26 AC 146 ms
74,664 KB
testcase_27 AC 47 ms
59,696 KB
testcase_28 AC 90 ms
72,592 KB
testcase_29 AC 85 ms
72,692 KB
testcase_30 AC 85 ms
72,252 KB
testcase_31 AC 106 ms
72,980 KB
testcase_32 AC 36 ms
52,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P, K = map(int, input().split())
print(((10 ** (P - 1) - K) // P + 1) % (1000000007))
0