結果

問題 No.2963 Mecha DESU
ユーザー ntudantuda
提出日時 2024-11-30 12:19:25
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 314 bytes
コンパイル時間 1,480 ms
コンパイル使用メモリ 81,728 KB
実行使用メモリ 141,544 KB
最終ジャッジ日時 2024-11-30 12:19:48
合計ジャッジ時間 22,599 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
59,808 KB
testcase_01 AC 32 ms
139,040 KB
testcase_02 AC 32 ms
59,044 KB
testcase_03 AC 31 ms
52,440 KB
testcase_04 AC 33 ms
52,124 KB
testcase_05 AC 33 ms
52,508 KB
testcase_06 AC 33 ms
52,356 KB
testcase_07 AC 31 ms
52,276 KB
testcase_08 AC 33 ms
53,068 KB
testcase_09 AC 32 ms
53,584 KB
testcase_10 AC 32 ms
52,028 KB
testcase_11 AC 32 ms
52,656 KB
testcase_12 AC 33 ms
53,404 KB
testcase_13 AC 447 ms
95,720 KB
testcase_14 AC 445 ms
96,352 KB
testcase_15 AC 414 ms
96,016 KB
testcase_16 AC 413 ms
94,632 KB
testcase_17 AC 450 ms
96,024 KB
testcase_18 AC 400 ms
96,004 KB
testcase_19 AC 392 ms
95,988 KB
testcase_20 AC 305 ms
89,064 KB
testcase_21 AC 102 ms
91,092 KB
testcase_22 AC 70 ms
70,836 KB
testcase_23 AC 63 ms
80,860 KB
testcase_24 AC 263 ms
79,576 KB
testcase_25 AC 286 ms
91,592 KB
testcase_26 AC 405 ms
83,108 KB
testcase_27 AC 195 ms
73,384 KB
testcase_28 AC 392 ms
93,960 KB
testcase_29 AC 302 ms
91,716 KB
testcase_30 AC 56 ms
65,064 KB
testcase_31 AC 162 ms
84,084 KB
testcase_32 AC 89 ms
67,224 KB
testcase_33 AC 304 ms
90,036 KB
testcase_34 AC 247 ms
93,976 KB
testcase_35 AC 120 ms
73,268 KB
testcase_36 AC 235 ms
82,092 KB
testcase_37 AC 84 ms
83,828 KB
testcase_38 AC 152 ms
71,040 KB
testcase_39 AC 254 ms
84,620 KB
testcase_40 AC 214 ms
73,452 KB
testcase_41 AC 347 ms
86,124 KB
testcase_42 AC 288 ms
88,052 KB
testcase_43 AC 412 ms
93,164 KB
testcase_44 AC 336 ms
88,308 KB
testcase_45 AC 373 ms
81,052 KB
testcase_46 AC 193 ms
79,792 KB
testcase_47 AC 252 ms
73,784 KB
testcase_48 AC 139 ms
77,592 KB
testcase_49 AC 244 ms
68,856 KB
testcase_50 AC 461 ms
95,264 KB
testcase_51 AC 509 ms
95,104 KB
testcase_52 AC 404 ms
95,068 KB
testcase_53 TLE -
testcase_54 TLE -
testcase_55 AC 36 ms
52,148 KB
testcase_56 AC 34 ms
52,296 KB
testcase_57 AC 63 ms
67,784 KB
testcase_58 AC 59 ms
81,652 KB
testcase_59 AC 35 ms
141,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
N, M, K = map(int, input().split())
A = list(map(int, input().split()))
X = [0] * (N + 1)
for a in A:
    for i in range(1, N // a + 1):
        X[i * a] += 1
all = pow(M, K, MOD)
ans = 0
for x in X:
    ans += all - pow(M - x, K, MOD)
    ans %= MOD
ans *= pow(all, -1, MOD)
ans %= MOD
print(ans)
0