結果

問題 No.2963 Mecha DESU
ユーザー titiatitia
提出日時 2024-11-24 04:15:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 344 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 61,700 KB
最終ジャッジ日時 2024-11-24 04:16:42
合計ジャッジ時間 70,988 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
16,128 KB
testcase_01 AC 28 ms
16,000 KB
testcase_02 AC 28 ms
15,872 KB
testcase_03 AC 32 ms
41,100 KB
testcase_04 AC 28 ms
16,000 KB
testcase_05 AC 29 ms
40,928 KB
testcase_06 AC 29 ms
16,000 KB
testcase_07 AC 28 ms
41,312 KB
testcase_08 AC 28 ms
16,128 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 28 ms
10,880 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1,380 ms
22,768 KB
testcase_21 AC 329 ms
24,800 KB
testcase_22 AC 171 ms
15,024 KB
testcase_23 AC 128 ms
19,164 KB
testcase_24 AC 1,338 ms
22,760 KB
testcase_25 AC 1,475 ms
24,140 KB
testcase_26 AC 1,849 ms
24,356 KB
testcase_27 AC 767 ms
17,544 KB
testcase_28 TLE -
testcase_29 AC 1,729 ms
24,536 KB
testcase_30 AC 93 ms
12,032 KB
testcase_31 AC 621 ms
20,072 KB
testcase_32 AC 231 ms
13,848 KB
testcase_33 AC 1,892 ms
24,460 KB
testcase_34 AC 1,718 ms
27,696 KB
testcase_35 AC 412 ms
16,600 KB
testcase_36 AC 1,309 ms
23,764 KB
testcase_37 AC 230 ms
20,588 KB
testcase_38 AC 571 ms
14,868 KB
testcase_39 AC 1,391 ms
23,604 KB
testcase_40 AC 861 ms
16,692 KB
testcase_41 AC 1,689 ms
24,484 KB
testcase_42 AC 1,384 ms
23,244 KB
testcase_43 TLE -
testcase_44 AC 1,883 ms
26,596 KB
testcase_45 AC 1,640 ms
22,500 KB
testcase_46 AC 1,225 ms
20,176 KB
testcase_47 AC 942 ms
17,932 KB
testcase_48 AC 456 ms
16,548 KB
testcase_49 AC 774 ms
15,488 KB
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 AC 31 ms
10,624 KB
testcase_56 AC 29 ms
10,624 KB
testcase_57 AC 600 ms
18,432 KB
testcase_58 AC 105 ms
25,112 KB
testcase_59 AC 29 ms
61,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

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

mod=998244353

C=Counter(A)

LIST=[0]*(N+1)

for c in C:
    for i in range(c,N+1,c):
        LIST[i]+=C[c]
        
ANS=0
INV=pow(M,mod-2,mod)

for i in range(1,N+1):
    x=LIST[i]

    ANS+=pow((M-x)*INV,K,mod)
    ANS%=mod

print((N-ANS)%mod)
0