結果

問題 No.2963 Mecha DESU
ユーザー ニックネームニックネーム
提出日時 2024-11-16 16:33:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 568 ms / 2,000 ms
コード長 260 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 115,328 KB
最終ジャッジ日時 2024-11-16 16:33:43
合計ジャッジ時間 17,777 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,248 KB
testcase_01 AC 44 ms
53,120 KB
testcase_02 AC 43 ms
52,992 KB
testcase_03 AC 44 ms
52,992 KB
testcase_04 AC 45 ms
53,120 KB
testcase_05 AC 43 ms
53,248 KB
testcase_06 AC 44 ms
53,120 KB
testcase_07 AC 44 ms
52,992 KB
testcase_08 AC 44 ms
52,992 KB
testcase_09 AC 45 ms
52,992 KB
testcase_10 AC 46 ms
52,992 KB
testcase_11 AC 44 ms
53,120 KB
testcase_12 AC 45 ms
53,120 KB
testcase_13 AC 534 ms
107,136 KB
testcase_14 AC 540 ms
107,264 KB
testcase_15 AC 505 ms
107,392 KB
testcase_16 AC 500 ms
115,328 KB
testcase_17 AC 516 ms
107,392 KB
testcase_18 AC 482 ms
107,136 KB
testcase_19 AC 488 ms
107,392 KB
testcase_20 AC 332 ms
97,536 KB
testcase_21 AC 144 ms
100,352 KB
testcase_22 AC 97 ms
74,624 KB
testcase_23 AC 116 ms
89,472 KB
testcase_24 AC 329 ms
92,032 KB
testcase_25 AC 352 ms
102,016 KB
testcase_26 AC 433 ms
97,536 KB
testcase_27 AC 237 ms
80,512 KB
testcase_28 AC 479 ms
105,856 KB
testcase_29 AC 362 ms
101,248 KB
testcase_30 AC 74 ms
66,048 KB
testcase_31 AC 192 ms
92,288 KB
testcase_32 AC 113 ms
70,784 KB
testcase_33 AC 398 ms
100,096 KB
testcase_34 AC 309 ms
104,960 KB
testcase_35 AC 148 ms
79,360 KB
testcase_36 AC 282 ms
93,952 KB
testcase_37 AC 117 ms
93,312 KB
testcase_38 AC 169 ms
75,008 KB
testcase_39 AC 312 ms
97,408 KB
testcase_40 AC 252 ms
79,488 KB
testcase_41 AC 425 ms
102,400 KB
testcase_42 AC 365 ms
98,688 KB
testcase_43 AC 476 ms
104,448 KB
testcase_44 AC 398 ms
104,704 KB
testcase_45 AC 439 ms
92,032 KB
testcase_46 AC 223 ms
90,240 KB
testcase_47 AC 287 ms
80,256 KB
testcase_48 AC 173 ms
84,096 KB
testcase_49 AC 280 ms
71,680 KB
testcase_50 AC 551 ms
107,008 KB
testcase_51 AC 568 ms
107,008 KB
testcase_52 AC 510 ms
107,136 KB
testcase_53 AC 374 ms
90,240 KB
testcase_54 AC 475 ms
90,112 KB
testcase_55 AC 44 ms
52,992 KB
testcase_56 AC 43 ms
53,120 KB
testcase_57 AC 77 ms
74,880 KB
testcase_58 AC 90 ms
92,800 KB
testcase_59 AC 42 ms
52,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n,m,p = map(int,input().split())
f = [m]*(n+1)
c = Counter(map(int,input().split()))
for k,v in c.items():
    for r in range(1,n//k+1): f[k*r] -= v
x = 0; z = 998244353
for v in f[1:]: x += pow(v,p,z)
print((n-x*pow(m,-p,z))%z)
0