結果

問題 No.2963 Mecha DESU
ユーザー miya145592miya145592
提出日時 2024-11-16 17:02:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 596 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 110,804 KB
最終ジャッジ日時 2024-11-16 17:03:16
合計ジャッジ時間 8,287 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
65,920 KB
testcase_01 AC 48 ms
65,280 KB
testcase_02 AC 48 ms
65,664 KB
testcase_03 AC 47 ms
66,048 KB
testcase_04 AC 47 ms
65,664 KB
testcase_05 AC 47 ms
65,664 KB
testcase_06 AC 49 ms
65,536 KB
testcase_07 AC 49 ms
66,048 KB
testcase_08 AC 46 ms
65,792 KB
testcase_09 AC 47 ms
65,664 KB
testcase_10 AC 49 ms
65,664 KB
testcase_11 AC 49 ms
65,792 KB
testcase_12 AC 49 ms
65,632 KB
testcase_13 AC 148 ms
104,832 KB
testcase_14 AC 151 ms
104,948 KB
testcase_15 AC 145 ms
104,704 KB
testcase_16 AC 140 ms
104,704 KB
testcase_17 AC 142 ms
104,704 KB
testcase_18 AC 142 ms
104,832 KB
testcase_19 AC 140 ms
104,764 KB
testcase_20 AC 118 ms
100,864 KB
testcase_21 AC 119 ms
97,656 KB
testcase_22 AC 71 ms
80,000 KB
testcase_23 AC 122 ms
98,812 KB
testcase_24 AC 106 ms
92,040 KB
testcase_25 AC 141 ms
100,548 KB
testcase_26 AC 115 ms
94,720 KB
testcase_27 AC 85 ms
82,560 KB
testcase_28 AC 151 ms
103,732 KB
testcase_29 AC 135 ms
99,968 KB
testcase_30 AC 62 ms
72,960 KB
testcase_31 AC 112 ms
98,304 KB
testcase_32 AC 70 ms
77,440 KB
testcase_33 AC 122 ms
102,840 KB
testcase_34 AC 127 ms
102,656 KB
testcase_35 AC 81 ms
83,584 KB
testcase_36 AC 94 ms
91,904 KB
testcase_37 AC 128 ms
101,068 KB
testcase_38 AC 74 ms
79,232 KB
testcase_39 AC 101 ms
95,104 KB
testcase_40 AC 80 ms
82,432 KB
testcase_41 AC 116 ms
97,920 KB
testcase_42 AC 126 ms
101,600 KB
testcase_43 AC 143 ms
108,320 KB
testcase_44 AC 117 ms
101,888 KB
testcase_45 AC 122 ms
91,776 KB
testcase_46 AC 102 ms
91,088 KB
testcase_47 AC 79 ms
81,792 KB
testcase_48 AC 92 ms
87,424 KB
testcase_49 AC 65 ms
75,392 KB
testcase_50 AC 190 ms
110,528 KB
testcase_51 AC 200 ms
110,716 KB
testcase_52 AC 194 ms
110,804 KB
testcase_53 AC 124 ms
103,296 KB
testcase_54 AC 131 ms
103,552 KB
testcase_55 AC 48 ms
65,280 KB
testcase_56 AC 47 ms
65,536 KB
testcase_57 AC 64 ms
76,032 KB
testcase_58 AC 82 ms
97,152 KB
testcase_59 AC 48 ms
65,792 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)]
D = [0 for _ in range(10**6+1)]
for a in A:
    D[a] += 1
for i in range(10**6+1):
    if D[i]==0:
        continue
    for j in range(i, N+1, i):
        cnt[j-1] += D[i]
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