結果

問題 No.1177 余りは?
ユーザー nikkukunnikkukun
提出日時 2020-08-21 22:54:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 1,000 ms
コード長 133 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-10-15 06:31:20
合計ジャッジ時間 4,118 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
71,884 KB
testcase_01 AC 181 ms
76,288 KB
testcase_02 AC 62 ms
71,040 KB
testcase_03 AC 123 ms
73,688 KB
testcase_04 AC 77 ms
72,192 KB
testcase_05 AC 86 ms
72,704 KB
testcase_06 AC 45 ms
57,088 KB
testcase_07 AC 43 ms
57,088 KB
testcase_08 AC 153 ms
75,128 KB
testcase_09 AC 135 ms
74,880 KB
testcase_10 AC 37 ms
52,352 KB
testcase_11 AC 92 ms
73,088 KB
testcase_12 AC 42 ms
56,192 KB
testcase_13 AC 48 ms
60,032 KB
testcase_14 AC 54 ms
67,712 KB
testcase_15 AC 70 ms
71,808 KB
testcase_16 AC 61 ms
71,040 KB
testcase_17 AC 158 ms
75,520 KB
testcase_18 AC 82 ms
72,156 KB
testcase_19 AC 107 ms
73,088 KB
testcase_20 AC 48 ms
61,312 KB
testcase_21 AC 94 ms
72,640 KB
testcase_22 AC 145 ms
75,008 KB
testcase_23 AC 83 ms
72,064 KB
testcase_24 AC 61 ms
70,912 KB
testcase_25 AC 127 ms
73,856 KB
testcase_26 AC 151 ms
75,464 KB
testcase_27 AC 48 ms
59,648 KB
testcase_28 AC 93 ms
73,088 KB
testcase_29 AC 86 ms
72,704 KB
testcase_30 AC 86 ms
72,832 KB
testcase_31 AC 106 ms
73,084 KB
testcase_32 AC 37 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p, k = map(int, input().split())
n = 10 ** (p - 1) - k - 1

MOD = 10 ** 9 + 7
ans = 0
if n >= 0:
	ans = (n // p + 1) % MOD
print(ans)
0