結果

問題 No.1177 余りは?
ユーザー 37zigen37zigen
提出日時 2020-08-22 07:22:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 137 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,464 KB
最終ジャッジ日時 2024-10-15 06:46:45
合計ジャッジ時間 11,963 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 236 ms
11,264 KB
testcase_01 AC 923 ms
12,464 KB
testcase_02 AC 165 ms
11,008 KB
testcase_03 AC 544 ms
11,892 KB
testcase_04 AC 229 ms
11,520 KB
testcase_05 AC 302 ms
11,520 KB
testcase_06 AC 65 ms
10,880 KB
testcase_07 AC 62 ms
10,752 KB
testcase_08 AC 729 ms
12,020 KB
testcase_09 AC 610 ms
12,096 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 AC 347 ms
11,512 KB
testcase_12 AC 53 ms
10,880 KB
testcase_13 AC 89 ms
10,880 KB
testcase_14 AC 121 ms
11,136 KB
testcase_15 AC 200 ms
11,136 KB
testcase_16 AC 143 ms
11,008 KB
testcase_17 AC 764 ms
12,280 KB
testcase_18 AC 263 ms
11,392 KB
testcase_19 AC 450 ms
11,768 KB
testcase_20 AC 91 ms
11,008 KB
testcase_21 AC 365 ms
11,640 KB
testcase_22 AC 674 ms
12,148 KB
testcase_23 AC 276 ms
11,516 KB
testcase_24 AC 150 ms
11,136 KB
testcase_25 AC 552 ms
11,920 KB
testcase_26 AC 697 ms
12,024 KB
testcase_27 AC 88 ms
11,008 KB
testcase_28 AC 347 ms
11,508 KB
testcase_29 AC 306 ms
11,388 KB
testcase_30 AC 295 ms
11,520 KB
testcase_31 AC 447 ms
11,768 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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