結果

問題 No.2963 Mecha DESU
ユーザー detteiuudetteiuu
提出日時 2024-11-16 16:09:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 584 ms / 2,000 ms
コード長 534 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-11-16 16:09:24
合計ジャッジ時間 17,784 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
65,152 KB
testcase_01 AC 47 ms
65,664 KB
testcase_02 AC 48 ms
65,152 KB
testcase_03 AC 46 ms
65,536 KB
testcase_04 AC 52 ms
65,408 KB
testcase_05 AC 47 ms
65,152 KB
testcase_06 AC 48 ms
65,408 KB
testcase_07 AC 47 ms
65,280 KB
testcase_08 AC 47 ms
65,280 KB
testcase_09 AC 46 ms
65,152 KB
testcase_10 AC 46 ms
64,896 KB
testcase_11 AC 46 ms
65,152 KB
testcase_12 AC 46 ms
65,408 KB
testcase_13 AC 516 ms
107,136 KB
testcase_14 AC 520 ms
107,136 KB
testcase_15 AC 495 ms
107,008 KB
testcase_16 AC 479 ms
107,008 KB
testcase_17 AC 508 ms
106,880 KB
testcase_18 AC 485 ms
107,520 KB
testcase_19 AC 476 ms
106,880 KB
testcase_20 AC 332 ms
97,664 KB
testcase_21 AC 132 ms
99,840 KB
testcase_22 AC 97 ms
77,952 KB
testcase_23 AC 99 ms
93,568 KB
testcase_24 AC 319 ms
89,472 KB
testcase_25 AC 349 ms
101,504 KB
testcase_26 AC 461 ms
92,032 KB
testcase_27 AC 237 ms
80,640 KB
testcase_28 AC 459 ms
105,856 KB
testcase_29 AC 360 ms
100,864 KB
testcase_30 AC 81 ms
72,192 KB
testcase_31 AC 192 ms
94,464 KB
testcase_32 AC 121 ms
75,648 KB
testcase_33 AC 364 ms
99,328 KB
testcase_34 AC 306 ms
104,448 KB
testcase_35 AC 156 ms
81,280 KB
testcase_36 AC 289 ms
89,216 KB
testcase_37 AC 123 ms
96,896 KB
testcase_38 AC 174 ms
77,568 KB
testcase_39 AC 314 ms
92,288 KB
testcase_40 AC 264 ms
80,128 KB
testcase_41 AC 414 ms
94,592 KB
testcase_42 AC 342 ms
98,048 KB
testcase_43 AC 476 ms
104,320 KB
testcase_44 AC 398 ms
98,304 KB
testcase_45 AC 439 ms
88,960 KB
testcase_46 AC 223 ms
88,192 KB
testcase_47 AC 296 ms
79,744 KB
testcase_48 AC 175 ms
85,248 KB
testcase_49 AC 294 ms
75,776 KB
testcase_50 AC 566 ms
105,984 KB
testcase_51 AC 584 ms
106,496 KB
testcase_52 AC 496 ms
106,112 KB
testcase_53 AC 402 ms
103,296 KB
testcase_54 AC 482 ms
103,424 KB
testcase_55 AC 53 ms
64,768 KB
testcase_56 AC 53 ms
65,152 KB
testcase_57 AC 87 ms
75,776 KB
testcase_58 AC 92 ms
97,024 KB
testcase_59 AC 53 ms
64,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, K = map(int, input().split())
A = list(map(int, input().split()))

MOD = 998244353

def inverse(n, d):
    return n * pow(d, -1, MOD) % MOD

cntA = [0]*(10**6+1)
for i in range(M):
    cntA[A[i]] += 1
C = [0]*(N+1)
for i in range(10**6+1):
    if cntA[i] == 0:
        continue
    idx = i
    while idx <= N:
        C[idx] += cntA[i]
        idx += i

P = [0]
p = inverse(1, M)
for _ in range(M):
    P.append((P[-1]+p)%MOD)

ans = 0
for i in range(1, N+1):
    ans += (1-pow(P[M-C[i]], K, MOD))%MOD
    ans %= MOD

print(ans)
0