結果

問題 No.2561 みんな大好きmod 998
ユーザー titiatitia
提出日時 2023-12-10 00:20:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,541 ms / 4,000 ms
コード長 267 bytes
コンパイル時間 821 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 486,556 KB
最終ジャッジ日時 2024-09-27 03:54:13
合計ジャッジ時間 18,353 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 95 ms
96,384 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 1,541 ms
486,436 KB
testcase_04 AC 1,471 ms
486,432 KB
testcase_05 AC 1,495 ms
486,104 KB
testcase_06 AC 1,502 ms
486,556 KB
testcase_07 AC 36 ms
52,352 KB
testcase_08 AC 35 ms
52,480 KB
testcase_09 AC 57 ms
60,160 KB
testcase_10 AC 39 ms
52,096 KB
testcase_11 AC 169 ms
137,312 KB
testcase_12 AC 36 ms
51,712 KB
testcase_13 AC 34 ms
52,096 KB
testcase_14 AC 37 ms
52,224 KB
testcase_15 AC 1,335 ms
486,040 KB
testcase_16 AC 36 ms
51,840 KB
testcase_17 AC 34 ms
51,968 KB
testcase_18 AC 40 ms
58,752 KB
testcase_19 AC 920 ms
362,356 KB
testcase_20 AC 39 ms
59,008 KB
testcase_21 AC 35 ms
51,968 KB
testcase_22 AC 34 ms
52,352 KB
testcase_23 AC 39 ms
58,240 KB
testcase_24 AC 34 ms
52,096 KB
testcase_25 AC 33 ms
52,224 KB
testcase_26 AC 221 ms
154,180 KB
testcase_27 AC 1,518 ms
486,520 KB
testcase_28 AC 286 ms
180,208 KB
testcase_29 AC 103 ms
103,424 KB
testcase_30 AC 289 ms
163,316 KB
testcase_31 AC 732 ms
288,660 KB
testcase_32 AC 144 ms
123,440 KB
testcase_33 AC 101 ms
103,424 KB
testcase_34 AC 1,492 ms
486,512 KB
testcase_35 AC 101 ms
105,328 KB
testcase_36 AC 103 ms
104,960 KB
testcase_37 AC 56 ms
76,928 KB
testcase_38 AC 175 ms
137,452 KB
testcase_39 AC 294 ms
163,244 KB
testcase_40 AC 298 ms
163,400 KB
testcase_41 AC 171 ms
137,132 KB
testcase_42 AC 285 ms
180,344 KB
testcase_43 AC 56 ms
77,268 KB
testcase_44 AC 140 ms
121,956 KB
testcase_45 AC 936 ms
362,116 KB
testcase_46 AC 105 ms
105,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations

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

L=list(combinations(range(N),K))

ANS=0
for i in L:
    score=0

    for j in i:
        score+=A[j]


    if score%998>=score%998244353:
        ANS+=1

print(ANS%998)
0