結果

問題 No.1177 余りは?
ユーザー tikitaka1201tikitaka1201
提出日時 2020-09-19 13:02:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 448 ms / 1,000 ms
コード長 120 bytes
コンパイル時間 901 ms
コンパイル使用メモリ 81,596 KB
実行使用メモリ 84,132 KB
最終ジャッジ日時 2024-06-23 12:12:46
合計ジャッジ時間 7,348 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
72,960 KB
testcase_01 AC 448 ms
84,132 KB
testcase_02 AC 100 ms
71,424 KB
testcase_03 AC 271 ms
76,288 KB
testcase_04 AC 133 ms
72,832 KB
testcase_05 AC 163 ms
74,368 KB
testcase_06 AC 54 ms
68,096 KB
testcase_07 AC 53 ms
67,328 KB
testcase_08 AC 358 ms
80,656 KB
testcase_09 AC 309 ms
79,104 KB
testcase_10 AC 38 ms
53,120 KB
testcase_11 AC 183 ms
74,700 KB
testcase_12 AC 48 ms
65,280 KB
testcase_13 AC 68 ms
70,784 KB
testcase_14 AC 82 ms
71,532 KB
testcase_15 AC 119 ms
72,192 KB
testcase_16 AC 91 ms
71,040 KB
testcase_17 AC 368 ms
81,024 KB
testcase_18 AC 144 ms
72,832 KB
testcase_19 AC 221 ms
75,264 KB
testcase_20 AC 70 ms
70,896 KB
testcase_21 AC 187 ms
74,112 KB
testcase_22 AC 334 ms
79,744 KB
testcase_23 AC 154 ms
73,856 KB
testcase_24 AC 95 ms
71,424 KB
testcase_25 AC 278 ms
77,184 KB
testcase_26 AC 344 ms
80,768 KB
testcase_27 AC 68 ms
71,392 KB
testcase_28 AC 179 ms
74,476 KB
testcase_29 AC 166 ms
73,856 KB
testcase_30 AC 160 ms
74,240 KB
testcase_31 AC 217 ms
75,648 KB
testcase_32 AC 36 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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