結果

問題 No.2561 みんな大好きmod 998
ユーザー titiatitia
提出日時 2023-12-10 00:17:10
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 289 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 76,200 KB
最終ジャッジ日時 2024-09-27 03:53:52
合計ジャッジ時間 15,982 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,464 KB
testcase_01 AC 79 ms
66,176 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 504 ms
61,528 KB
testcase_08 AC 36 ms
53,480 KB
testcase_09 AC 46 ms
62,544 KB
testcase_10 AC 35 ms
52,840 KB
testcase_11 AC 583 ms
76,196 KB
testcase_12 AC 37 ms
52,420 KB
testcase_13 AC 151 ms
60,616 KB
testcase_14 AC 269 ms
60,616 KB
testcase_15 TLE -
testcase_16 AC 514 ms
60,620 KB
testcase_17 AC 37 ms
51,876 KB
testcase_18 AC 49 ms
62,516 KB
testcase_19 AC 2,395 ms
75,820 KB
testcase_20 AC 69 ms
61,908 KB
testcase_21 AC 35 ms
53,356 KB
testcase_22 AC 36 ms
51,904 KB
testcase_23 AC 43 ms
60,976 KB
testcase_24 AC 35 ms
53,280 KB
testcase_25 AC 36 ms
53,696 KB
testcase_26 AC 1,404 ms
75,816 KB
testcase_27 TLE -
testcase_28 AC 2,174 ms
75,776 KB
testcase_29 AC 215 ms
72,596 KB
testcase_30 AC 458 ms
75,796 KB
testcase_31 AC 1,264 ms
75,728 KB
testcase_32 TLE -
testcase_33 AC 212 ms
73,192 KB
testcase_34 TLE -
testcase_35 AC 1,046 ms
72,372 KB
testcase_36 AC 1,038 ms
73,016 KB
testcase_37 AC 178 ms
66,564 KB
testcase_38 AC 594 ms
75,900 KB
testcase_39 AC 463 ms
76,116 KB
testcase_40 AC 461 ms
75,964 KB
testcase_41 AC 601 ms
75,736 KB
testcase_42 AC 2,172 ms
76,064 KB
testcase_43 AC 179 ms
66,668 KB
testcase_44 AC 344 ms
76,200 KB
testcase_45 AC 2,472 ms
76,016 KB
testcase_46 AC 2,072 ms
74,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ANS=0
for i in range(1<<N):
    score=0

    if i.bit_count()!=K:
        continue
    for j in range(N):
        if i & (1<<j) != 0:
            score+=A[j]


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

print(ANS%998)
0