結果

問題 No.1177 余りは?
ユーザー anagohirameanagohirame
提出日時 2020-08-21 23:39:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 207 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,836 KB
実行使用メモリ 54,108 KB
最終ジャッジ日時 2024-10-15 06:33:49
合計ジャッジ時間 2,346 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
51,968 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 37 ms
51,936 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 38 ms
51,456 KB
testcase_07 AC 38 ms
51,456 KB
testcase_08 AC 39 ms
51,712 KB
testcase_09 AC 37 ms
51,712 KB
testcase_10 WA -
testcase_11 AC 39 ms
51,840 KB
testcase_12 AC 38 ms
51,712 KB
testcase_13 WA -
testcase_14 AC 40 ms
51,712 KB
testcase_15 WA -
testcase_16 AC 39 ms
51,456 KB
testcase_17 AC 37 ms
51,968 KB
testcase_18 WA -
testcase_19 AC 38 ms
51,584 KB
testcase_20 AC 37 ms
51,328 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 38 ms
51,456 KB
testcase_24 AC 38 ms
51,712 KB
testcase_25 WA -
testcase_26 AC 38 ms
51,584 KB
testcase_27 AC 37 ms
52,096 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 37 ms
51,456 KB
testcase_31 AC 38 ms
51,584 KB
testcase_32 AC 37 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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