結果

問題 No.2318 Phys Bone Maker
ユーザー 倉
提出日時 2023-05-26 22:43:15
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 750 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 134,784 KB
最終ジャッジ日時 2024-12-25 09:05:18
合計ジャッジ時間 41,116 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
57,856 KB
testcase_01 AC 46 ms
57,344 KB
testcase_02 TLE -
testcase_03 AC 66 ms
63,232 KB
testcase_04 AC 62 ms
62,976 KB
testcase_05 AC 64 ms
62,976 KB
testcase_06 AC 64 ms
134,784 KB
testcase_07 AC 65 ms
65,792 KB
testcase_08 AC 69 ms
66,560 KB
testcase_09 AC 58 ms
57,856 KB
testcase_10 AC 68 ms
57,472 KB
testcase_11 AC 70 ms
60,160 KB
testcase_12 AC 83 ms
62,336 KB
testcase_13 AC 97 ms
64,384 KB
testcase_14 AC 64 ms
57,728 KB
testcase_15 AC 62 ms
57,600 KB
testcase_16 AC 62 ms
57,472 KB
testcase_17 AC 67 ms
57,728 KB
testcase_18 AC 82 ms
62,336 KB
testcase_19 AC 57 ms
57,088 KB
testcase_20 AC 66 ms
57,472 KB
testcase_21 AC 60 ms
57,216 KB
testcase_22 AC 62 ms
58,112 KB
testcase_23 AC 59 ms
57,472 KB
testcase_24 AC 66 ms
57,344 KB
testcase_25 AC 64 ms
57,728 KB
testcase_26 AC 74 ms
60,800 KB
testcase_27 AC 68 ms
57,600 KB
testcase_28 AC 60 ms
57,344 KB
testcase_29 AC 58 ms
57,472 KB
testcase_30 AC 58 ms
57,088 KB
testcase_31 AC 72 ms
57,728 KB
testcase_32 AC 67 ms
57,472 KB
testcase_33 AC 47 ms
52,480 KB
testcase_34 AC 70 ms
59,904 KB
testcase_35 AC 784 ms
76,160 KB
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 87 ms
63,488 KB
testcase_44 AC 634 ms
76,288 KB
testcase_45 AC 593 ms
76,032 KB
testcase_46 TLE -
testcase_47 AC 67 ms
134,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

mod = 998244353
N = int(input())

# @LorseKudos(TechTrain) / 約数を高速で列挙するコード(Python)
# https://qiita.com/LorseKudos/items/9eb560494862c8b4eb56
def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]

L = make_divisors(N)
# print(len(L))

def lcm(a, b):
    g = gcd(a,b)
    return a * b // g

DP = {}
for x in L:
    DP[x] = 0
DP[1] = 1

for x in L:
    for y in L:
        z = lcm(x, y)
        if z <= x: continue
        DP[z] = (DP[z] + DP[x]) % mod

print(DP[N])
0