結果

問題 No.1177 余りは?
ユーザー anagohirameanagohirame
提出日時 2020-08-21 23:41:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 319 ms / 1,000 ms
コード長 162 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 80,024 KB
最終ジャッジ日時 2024-10-15 06:34:00
合計ジャッジ時間 5,632 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
72,212 KB
testcase_01 AC 319 ms
80,024 KB
testcase_02 AC 82 ms
70,776 KB
testcase_03 AC 201 ms
74,880 KB
testcase_04 AC 105 ms
72,064 KB
testcase_05 AC 126 ms
73,216 KB
testcase_06 AC 50 ms
63,104 KB
testcase_07 AC 50 ms
61,824 KB
testcase_08 AC 260 ms
77,312 KB
testcase_09 AC 227 ms
76,544 KB
testcase_10 AC 40 ms
52,480 KB
testcase_11 AC 139 ms
73,088 KB
testcase_12 AC 47 ms
60,416 KB
testcase_13 AC 58 ms
67,072 KB
testcase_14 AC 73 ms
71,048 KB
testcase_15 AC 96 ms
71,552 KB
testcase_16 AC 77 ms
70,596 KB
testcase_17 AC 272 ms
78,528 KB
testcase_18 AC 116 ms
72,424 KB
testcase_19 AC 169 ms
74,484 KB
testcase_20 AC 63 ms
71,040 KB
testcase_21 AC 146 ms
72,832 KB
testcase_22 AC 247 ms
77,184 KB
testcase_23 AC 120 ms
72,832 KB
testcase_24 AC 80 ms
70,656 KB
testcase_25 AC 206 ms
75,520 KB
testcase_26 AC 255 ms
77,860 KB
testcase_27 AC 59 ms
67,072 KB
testcase_28 AC 139 ms
73,084 KB
testcase_29 AC 129 ms
72,832 KB
testcase_30 AC 128 ms
73,540 KB
testcase_31 AC 166 ms
73,856 KB
testcase_32 AC 38 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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