結果

問題 No.2963 Mecha DESU
ユーザー miya145592miya145592
提出日時 2024-11-16 16:58:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 437 bytes
コンパイル時間 680 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 138,880 KB
最終ジャッジ日時 2024-11-16 16:58:57
合計ジャッジ時間 13,815 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,216 KB
testcase_01 AC 40 ms
138,880 KB
testcase_02 AC 39 ms
57,344 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 41 ms
52,152 KB
testcase_05 AC 39 ms
52,480 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 40 ms
51,712 KB
testcase_09 AC 36 ms
51,840 KB
testcase_10 AC 40 ms
51,968 KB
testcase_11 AC 40 ms
51,840 KB
testcase_12 AC 40 ms
51,968 KB
testcase_13 AC 139 ms
101,924 KB
testcase_14 AC 130 ms
102,216 KB
testcase_15 AC 141 ms
101,440 KB
testcase_16 AC 160 ms
98,816 KB
testcase_17 AC 143 ms
102,952 KB
testcase_18 AC 137 ms
101,888 KB
testcase_19 AC 138 ms
103,052 KB
testcase_20 AC 116 ms
92,800 KB
testcase_21 AC 113 ms
89,744 KB
testcase_22 AC 65 ms
72,320 KB
testcase_23 AC 103 ms
85,504 KB
testcase_24 AC 96 ms
82,944 KB
testcase_25 AC 125 ms
97,940 KB
testcase_26 AC 102 ms
86,528 KB
testcase_27 AC 73 ms
75,264 KB
testcase_28 AC 145 ms
99,072 KB
testcase_29 AC 139 ms
92,032 KB
testcase_30 AC 52 ms
64,384 KB
testcase_31 AC 101 ms
87,680 KB
testcase_32 AC 59 ms
68,480 KB
testcase_33 AC 115 ms
94,984 KB
testcase_34 AC 120 ms
94,312 KB
testcase_35 AC 74 ms
75,520 KB
testcase_36 AC 85 ms
83,968 KB
testcase_37 AC 110 ms
88,832 KB
testcase_38 AC 69 ms
71,808 KB
testcase_39 AC 94 ms
87,296 KB
testcase_40 AC 76 ms
74,368 KB
testcase_41 AC 113 ms
89,984 KB
testcase_42 AC 127 ms
91,904 KB
testcase_43 AC 142 ms
98,944 KB
testcase_44 AC 110 ms
92,544 KB
testcase_45 AC 93 ms
83,584 KB
testcase_46 AC 89 ms
82,852 KB
testcase_47 AC 71 ms
73,472 KB
testcase_48 AC 88 ms
79,488 KB
testcase_49 AC 59 ms
66,176 KB
testcase_50 AC 192 ms
101,744 KB
testcase_51 AC 182 ms
101,504 KB
testcase_52 AC 169 ms
101,376 KB
testcase_53 TLE -
testcase_54 TLE -
testcase_55 AC 36 ms
51,840 KB
testcase_56 AC 37 ms
51,700 KB
testcase_57 AC 55 ms
66,816 KB
testcase_58 AC 69 ms
88,064 KB
testcase_59 AC 38 ms
138,624 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
power = []
base = pow(M, K, MOD)
for i in range(M+1):
    power.append((base-pow(i, K, MOD))%MOD)
ans = 0
for c in cnt:
    ans += power[M-c]
    ans %= MOD

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