結果

問題 No.2963 Mecha DESU
ユーザー miya145592miya145592
提出日時 2024-11-16 16:52:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 374 bytes
コンパイル時間 454 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 138,112 KB
最終ジャッジ日時 2024-11-16 16:53:11
合計ジャッジ時間 22,093 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
56,960 KB
testcase_01 AC 40 ms
138,112 KB
testcase_02 AC 40 ms
56,960 KB
testcase_03 AC 40 ms
51,584 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 40 ms
51,328 KB
testcase_06 AC 40 ms
51,584 KB
testcase_07 AC 40 ms
51,840 KB
testcase_08 AC 40 ms
51,712 KB
testcase_09 AC 41 ms
51,712 KB
testcase_10 AC 41 ms
51,712 KB
testcase_11 AC 41 ms
51,456 KB
testcase_12 AC 41 ms
51,968 KB
testcase_13 AC 511 ms
93,696 KB
testcase_14 AC 496 ms
94,080 KB
testcase_15 AC 486 ms
93,824 KB
testcase_16 AC 490 ms
90,368 KB
testcase_17 AC 496 ms
94,336 KB
testcase_18 AC 465 ms
93,952 KB
testcase_19 AC 468 ms
94,208 KB
testcase_20 AC 319 ms
86,528 KB
testcase_21 AC 118 ms
88,192 KB
testcase_22 AC 87 ms
69,888 KB
testcase_23 AC 78 ms
78,464 KB
testcase_24 AC 313 ms
78,592 KB
testcase_25 AC 338 ms
90,112 KB
testcase_26 AC 450 ms
81,792 KB
testcase_27 AC 229 ms
72,832 KB
testcase_28 AC 462 ms
91,008 KB
testcase_29 AC 348 ms
90,112 KB
testcase_30 AC 70 ms
63,360 KB
testcase_31 AC 176 ms
80,896 KB
testcase_32 AC 110 ms
66,560 KB
testcase_33 AC 358 ms
88,704 KB
testcase_34 AC 296 ms
92,160 KB
testcase_35 AC 147 ms
72,832 KB
testcase_36 AC 282 ms
79,744 KB
testcase_37 AC 103 ms
81,280 KB
testcase_38 AC 165 ms
69,248 KB
testcase_39 AC 305 ms
82,304 KB
testcase_40 AC 253 ms
71,808 KB
testcase_41 AC 406 ms
84,864 KB
testcase_42 AC 341 ms
85,632 KB
testcase_43 AC 465 ms
91,904 KB
testcase_44 AC 390 ms
86,784 KB
testcase_45 AC 422 ms
79,616 KB
testcase_46 AC 212 ms
78,592 KB
testcase_47 AC 284 ms
71,808 KB
testcase_48 AC 163 ms
75,392 KB
testcase_49 AC 282 ms
66,816 KB
testcase_50 AC 550 ms
93,696 KB
testcase_51 AC 579 ms
93,696 KB
testcase_52 AC 504 ms
93,696 KB
testcase_53 TLE -
testcase_54 TLE -
testcase_55 AC 40 ms
51,456 KB
testcase_56 AC 40 ms
51,456 KB
testcase_57 AC 77 ms
66,560 KB
testcase_58 AC 68 ms
79,616 KB
testcase_59 AC 40 ms
137,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
MOD = 998244353
N, M, K = map(int, input().split())
A = list(map(int, input().split()))
cnt = [0 for _ in range(N)]
for a in A:
    for j in range(a, N+1, a):
        cnt[j-1] += 1
ans = 0
base = pow(M, K, MOD)
for c in cnt:
    ans += base - pow(M-c, K, MOD)
    ans %= MOD

ans *= pow(pow(M, MOD-2, MOD), K, MOD)
ans %= MOD
print(ans)
0