結果

問題 No.1177 余りは?
ユーザー shobonvipshobonvip
提出日時 2023-10-30 00:43:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 177 ms / 1,000 ms
コード長 70 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 75,396 KB
最終ジャッジ日時 2024-09-25 17:03:32
合計ジャッジ時間 4,206 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
71,452 KB
testcase_01 AC 177 ms
75,396 KB
testcase_02 AC 62 ms
71,060 KB
testcase_03 AC 122 ms
72,936 KB
testcase_04 AC 75 ms
71,972 KB
testcase_05 AC 84 ms
72,036 KB
testcase_06 AC 43 ms
57,496 KB
testcase_07 AC 44 ms
58,636 KB
testcase_08 AC 151 ms
74,560 KB
testcase_09 AC 135 ms
74,160 KB
testcase_10 AC 38 ms
53,680 KB
testcase_11 AC 92 ms
72,240 KB
testcase_12 AC 42 ms
56,912 KB
testcase_13 AC 48 ms
59,768 KB
testcase_14 AC 54 ms
68,048 KB
testcase_15 AC 69 ms
71,444 KB
testcase_16 AC 58 ms
69,332 KB
testcase_17 AC 157 ms
74,728 KB
testcase_18 AC 81 ms
72,004 KB
testcase_19 AC 106 ms
72,668 KB
testcase_20 AC 49 ms
62,240 KB
testcase_21 AC 94 ms
72,436 KB
testcase_22 AC 144 ms
74,816 KB
testcase_23 AC 81 ms
71,976 KB
testcase_24 AC 60 ms
71,048 KB
testcase_25 AC 123 ms
73,340 KB
testcase_26 AC 148 ms
74,456 KB
testcase_27 AC 48 ms
59,696 KB
testcase_28 AC 90 ms
72,376 KB
testcase_29 AC 86 ms
72,420 KB
testcase_30 AC 85 ms
72,184 KB
testcase_31 AC 104 ms
72,676 KB
testcase_32 AC 36 ms
53,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p,k=map(int,input().split());print(((10**(p-1)-1)//p+(k<1))%(10**9+7))
0