結果

問題 No.2963 Mecha DESU
ユーザー 遭難者遭難者
提出日時 2024-10-26 00:55:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 603 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 104,836 KB
最終ジャッジ日時 2024-10-26 11:01:40
合計ジャッジ時間 18,961 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,064 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 36 ms
52,088 KB
testcase_03 AC 36 ms
52,892 KB
testcase_04 AC 35 ms
53,492 KB
testcase_05 AC 36 ms
52,460 KB
testcase_06 AC 35 ms
52,596 KB
testcase_07 AC 35 ms
52,960 KB
testcase_08 AC 36 ms
52,544 KB
testcase_09 AC 35 ms
52,944 KB
testcase_10 AC 36 ms
53,972 KB
testcase_11 AC 36 ms
52,396 KB
testcase_12 AC 34 ms
52,220 KB
testcase_13 AC 603 ms
104,568 KB
testcase_14 AC 580 ms
104,744 KB
testcase_15 AC 565 ms
104,540 KB
testcase_16 AC 549 ms
104,656 KB
testcase_17 AC 582 ms
104,708 KB
testcase_18 AC 554 ms
104,836 KB
testcase_19 AC 552 ms
104,544 KB
testcase_20 AC 369 ms
95,168 KB
testcase_21 AC 108 ms
88,260 KB
testcase_22 AC 83 ms
73,376 KB
testcase_23 AC 66 ms
80,160 KB
testcase_24 AC 367 ms
91,088 KB
testcase_25 AC 390 ms
97,816 KB
testcase_26 AC 536 ms
95,748 KB
testcase_27 AC 266 ms
83,972 KB
testcase_28 AC 513 ms
101,812 KB
testcase_29 AC 389 ms
96,764 KB
testcase_30 AC 66 ms
66,844 KB
testcase_31 AC 191 ms
89,816 KB
testcase_32 AC 111 ms
73,228 KB
testcase_33 AC 414 ms
97,528 KB
testcase_34 AC 350 ms
100,340 KB
testcase_35 AC 158 ms
82,132 KB
testcase_36 AC 349 ms
92,804 KB
testcase_37 AC 94 ms
84,572 KB
testcase_38 AC 184 ms
80,280 KB
testcase_39 AC 375 ms
94,060 KB
testcase_40 AC 293 ms
84,104 KB
testcase_41 AC 473 ms
95,096 KB
testcase_42 AC 377 ms
94,876 KB
testcase_43 AC 542 ms
102,856 KB
testcase_44 AC 489 ms
99,676 KB
testcase_45 AC 508 ms
93,220 KB
testcase_46 AC 240 ms
87,592 KB
testcase_47 AC 344 ms
86,172 KB
testcase_48 AC 173 ms
83,912 KB
testcase_49 AC 345 ms
85,236 KB
testcase_50 AC 582 ms
104,376 KB
testcase_51 AC 595 ms
104,356 KB
testcase_52 AC 513 ms
104,612 KB
testcase_53 AC 473 ms
103,836 KB
testcase_54 AC 557 ms
103,724 KB
testcase_55 AC 34 ms
52,680 KB
testcase_56 AC 34 ms
52,012 KB
testcase_57 AC 165 ms
91,180 KB
testcase_58 AC 56 ms
80,760 KB
testcase_59 AC 34 ms
52,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline
n, m, k = map(int, input().split())
a = list(map(int, input().split()))
d0 = [0 for i in range(n + 1)]
for i in a:
    if i <= n:
        d0[i] += 1
d1 = [0 for i in range(n + 1)]
for i in range(1, n + 1):
    for j in range(i, n + 1, i):
        d1[j] += d0[i]
ans = 0
mod = 998244353
m_inv = pow(m, mod - 2, mod)
for i in range(1, n + 1):
    ans += 1 - pow((m - d1[i]) * m_inv, k, mod)
print(ans % mod)
0