結果

問題 No.1177 余りは?
ユーザー beetbeet
提出日時 2020-08-21 22:15:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 336 ms / 1,000 ms
コード長 211 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 82,688 KB
最終ジャッジ日時 2024-10-15 06:27:32
合計ジャッジ時間 6,444 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
72,960 KB
testcase_01 AC 336 ms
82,688 KB
testcase_02 AC 102 ms
72,704 KB
testcase_03 AC 248 ms
78,464 KB
testcase_04 AC 121 ms
72,960 KB
testcase_05 AC 139 ms
74,112 KB
testcase_06 AC 63 ms
70,784 KB
testcase_07 AC 58 ms
67,712 KB
testcase_08 AC 282 ms
81,536 KB
testcase_09 AC 259 ms
79,232 KB
testcase_10 AC 40 ms
52,736 KB
testcase_11 AC 147 ms
74,240 KB
testcase_12 AC 54 ms
63,360 KB
testcase_13 AC 74 ms
70,784 KB
testcase_14 AC 82 ms
71,168 KB
testcase_15 AC 118 ms
72,448 KB
testcase_16 AC 98 ms
71,808 KB
testcase_17 AC 300 ms
82,048 KB
testcase_18 AC 139 ms
73,344 KB
testcase_19 AC 225 ms
77,312 KB
testcase_20 AC 74 ms
71,040 KB
testcase_21 AC 197 ms
75,648 KB
testcase_22 AC 276 ms
79,744 KB
testcase_23 AC 130 ms
73,728 KB
testcase_24 AC 102 ms
71,680 KB
testcase_25 AC 254 ms
78,208 KB
testcase_26 AC 280 ms
80,896 KB
testcase_27 AC 73 ms
71,168 KB
testcase_28 AC 145 ms
74,624 KB
testcase_29 AC 138 ms
73,472 KB
testcase_30 AC 140 ms
74,112 KB
testcase_31 AC 220 ms
77,184 KB
testcase_32 AC 37 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

res = 1

n = p - 1
t = 10
while n != 0:
    if n % 2 == 1: res *= t
    t *= t
    n //= 2

ans = res // p
if k < pow(10, p - 1, p): ans += 1

MOD = int(1e9+7)
print(ans % MOD)
0