結果

問題 No.2561 みんな大好きmod 998
ユーザー KoiKoi
提出日時 2023-12-02 15:46:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 524 ms / 4,000 ms
コード長 266 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-09-26 19:14:47
合計ジャッジ時間 8,823 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,096 KB
testcase_01 AC 77 ms
76,032 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 520 ms
75,776 KB
testcase_04 AC 521 ms
75,828 KB
testcase_05 AC 519 ms
75,744 KB
testcase_06 AC 519 ms
75,776 KB
testcase_07 AC 42 ms
52,096 KB
testcase_08 AC 42 ms
52,480 KB
testcase_09 AC 49 ms
59,904 KB
testcase_10 AC 41 ms
51,584 KB
testcase_11 AC 102 ms
75,984 KB
testcase_12 AC 42 ms
51,840 KB
testcase_13 AC 44 ms
51,968 KB
testcase_14 AC 43 ms
52,736 KB
testcase_15 AC 353 ms
75,592 KB
testcase_16 AC 43 ms
52,096 KB
testcase_17 AC 43 ms
52,216 KB
testcase_18 AC 49 ms
58,880 KB
testcase_19 AC 327 ms
75,776 KB
testcase_20 AC 51 ms
59,264 KB
testcase_21 AC 45 ms
51,840 KB
testcase_22 AC 43 ms
52,224 KB
testcase_23 AC 49 ms
59,216 KB
testcase_24 AC 43 ms
51,628 KB
testcase_25 AC 41 ms
52,096 KB
testcase_26 AC 117 ms
75,608 KB
testcase_27 AC 524 ms
75,868 KB
testcase_28 AC 139 ms
75,668 KB
testcase_29 AC 82 ms
75,904 KB
testcase_30 AC 170 ms
75,988 KB
testcase_31 AC 294 ms
75,520 KB
testcase_32 AC 90 ms
75,836 KB
testcase_33 AC 81 ms
75,348 KB
testcase_34 AC 518 ms
76,032 KB
testcase_35 AC 81 ms
75,832 KB
testcase_36 AC 77 ms
75,776 KB
testcase_37 AC 63 ms
71,936 KB
testcase_38 AC 101 ms
75,704 KB
testcase_39 AC 170 ms
75,740 KB
testcase_40 AC 171 ms
75,636 KB
testcase_41 AC 103 ms
75,896 KB
testcase_42 AC 137 ms
75,904 KB
testcase_43 AC 64 ms
71,424 KB
testcase_44 AC 91 ms
75,648 KB
testcase_45 AC 390 ms
76,020 KB
testcase_46 AC 84 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations
N,K=map(int,input().split())
A=list(map(int,input().split()))
L=[_ for _ in range(N)]
C=combinations(L,K)
ans=0
for c in C:
    s=0
    for i in range(K):
        s+=A[c[i]]
    if(s%998244353<=s%998):
        ans+=1
print(ans%998)
0