結果

問題 No.1177 余りは?
ユーザー yuppe19 😺yuppe19 😺
提出日時 2020-08-31 17:11:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 332 ms / 1,000 ms
コード長 194 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,332 KB
最終ジャッジ日時 2024-11-16 05:47:42
合計ジャッジ時間 5,723 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
11,264 KB
testcase_01 AC 332 ms
12,332 KB
testcase_02 AC 76 ms
11,008 KB
testcase_03 AC 207 ms
11,744 KB
testcase_04 AC 96 ms
11,392 KB
testcase_05 AC 121 ms
11,392 KB
testcase_06 AC 41 ms
10,752 KB
testcase_07 AC 39 ms
10,752 KB
testcase_08 AC 266 ms
12,000 KB
testcase_09 AC 223 ms
11,844 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 136 ms
11,244 KB
testcase_12 AC 38 ms
10,880 KB
testcase_13 AC 49 ms
10,880 KB
testcase_14 AC 61 ms
10,880 KB
testcase_15 AC 88 ms
11,008 KB
testcase_16 AC 67 ms
11,008 KB
testcase_17 AC 273 ms
12,184 KB
testcase_18 AC 108 ms
11,392 KB
testcase_19 AC 171 ms
11,520 KB
testcase_20 AC 50 ms
11,008 KB
testcase_21 AC 141 ms
11,392 KB
testcase_22 AC 246 ms
11,844 KB
testcase_23 AC 113 ms
11,392 KB
testcase_24 AC 70 ms
11,008 KB
testcase_25 AC 202 ms
11,928 KB
testcase_26 AC 254 ms
11,860 KB
testcase_27 AC 50 ms
10,752 KB
testcase_28 AC 137 ms
11,648 KB
testcase_29 AC 123 ms
11,360 KB
testcase_30 AC 119 ms
11,648 KB
testcase_31 AC 170 ms
11,516 KB
testcase_32 AC 29 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# †
###
if __name__ == '__main__':
    p, k = map(int, input().split())
    q, r = divmod(pow(10, p-1), p)
    res = q + (r % p >= k)
    res %= 10**9 + 7
    print(res)
0