結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー 👑 rin204rin204
提出日時 2022-02-24 19:50:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 3,000 ms
コード長 720 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 76,676 KB
最終ジャッジ日時 2024-07-02 13:30:49
合計ジャッジ時間 4,145 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 41 ms
53,084 KB
testcase_02 AC 63 ms
68,652 KB
testcase_03 AC 41 ms
53,388 KB
testcase_04 AC 32 ms
52,692 KB
testcase_05 AC 33 ms
52,076 KB
testcase_06 AC 34 ms
54,020 KB
testcase_07 AC 33 ms
54,008 KB
testcase_08 AC 34 ms
53,064 KB
testcase_09 AC 42 ms
53,576 KB
testcase_10 AC 33 ms
52,340 KB
testcase_11 AC 32 ms
52,788 KB
testcase_12 AC 40 ms
62,872 KB
testcase_13 AC 42 ms
64,324 KB
testcase_14 AC 44 ms
65,004 KB
testcase_15 AC 47 ms
66,140 KB
testcase_16 AC 47 ms
67,488 KB
testcase_17 AC 46 ms
66,800 KB
testcase_18 AC 48 ms
67,532 KB
testcase_19 AC 52 ms
67,544 KB
testcase_20 AC 55 ms
68,668 KB
testcase_21 AC 54 ms
69,540 KB
testcase_22 AC 54 ms
69,472 KB
testcase_23 AC 57 ms
69,108 KB
testcase_24 AC 56 ms
68,508 KB
testcase_25 AC 55 ms
69,244 KB
testcase_26 AC 57 ms
69,736 KB
testcase_27 AC 57 ms
70,704 KB
testcase_28 AC 55 ms
70,612 KB
testcase_29 AC 54 ms
69,748 KB
testcase_30 AC 82 ms
76,180 KB
testcase_31 AC 73 ms
76,368 KB
testcase_32 AC 111 ms
76,520 KB
testcase_33 AC 105 ms
76,392 KB
testcase_34 AC 128 ms
76,292 KB
testcase_35 AC 126 ms
76,304 KB
testcase_36 AC 130 ms
76,640 KB
testcase_37 AC 131 ms
76,608 KB
testcase_38 AC 115 ms
76,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
MOD = 10 ** 9 + 7

N = input()
dp = {}

def f(i):
    if i == 0:
        return 0
    else:
        return gcd(i, 100)

for i in range(1, int(N[0])):
    dp[f(i)] = dp.get(f(i), 0) + 1

same = f(int(N[0]))
for n in N[1:]:
    n = int(n)
    ndp = {}
    for k, v in dp.items():
        for i in range(10):
            ndp[f(k * i)] = ndp.get(f(k * i), 0) + v
            ndp[f(k * i)] %= MOD
    for i in range(n):
        ndp[f(same * i)] = ndp.get(f(same * i), 0) + 1
        ndp[f(same * i)] %= MOD
    for i in range(10):
        ndp[f(i)] = ndp.get(f(i), 0) + 1
        ndp[f(i)] %= MOD
    same = f(same * n)
    dp = ndp
    
ans = dp.get(100, 0)
if same == 100:
    ans += 1
print(ans % MOD)
0