結果

問題 No.2561 みんな大好きmod 998
ユーザー けんぴんけんぴん
提出日時 2023-10-29 18:52:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 469 ms / 4,000 ms
コード長 438 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 75,904 KB
最終ジャッジ日時 2024-09-25 22:28:39
合計ジャッジ時間 8,793 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 74 ms
75,392 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 446 ms
75,540 KB
testcase_04 AC 438 ms
75,648 KB
testcase_05 AC 434 ms
75,264 KB
testcase_06 AC 450 ms
75,516 KB
testcase_07 AC 39 ms
52,480 KB
testcase_08 AC 38 ms
52,616 KB
testcase_09 AC 49 ms
64,180 KB
testcase_10 AC 38 ms
51,584 KB
testcase_11 AC 118 ms
75,640 KB
testcase_12 AC 38 ms
51,968 KB
testcase_13 AC 39 ms
51,968 KB
testcase_14 AC 38 ms
52,096 KB
testcase_15 AC 462 ms
75,392 KB
testcase_16 AC 39 ms
52,224 KB
testcase_17 AC 38 ms
52,224 KB
testcase_18 AC 43 ms
57,728 KB
testcase_19 AC 353 ms
75,520 KB
testcase_20 AC 46 ms
59,904 KB
testcase_21 AC 38 ms
52,352 KB
testcase_22 AC 39 ms
52,224 KB
testcase_23 AC 43 ms
57,344 KB
testcase_24 AC 38 ms
51,712 KB
testcase_25 AC 38 ms
51,968 KB
testcase_26 AC 143 ms
75,648 KB
testcase_27 AC 441 ms
75,648 KB
testcase_28 AC 169 ms
75,392 KB
testcase_29 AC 89 ms
75,384 KB
testcase_30 AC 154 ms
75,904 KB
testcase_31 AC 256 ms
75,868 KB
testcase_32 AC 107 ms
75,572 KB
testcase_33 AC 91 ms
75,392 KB
testcase_34 AC 469 ms
75,648 KB
testcase_35 AC 87 ms
75,740 KB
testcase_36 AC 86 ms
75,776 KB
testcase_37 AC 70 ms
75,520 KB
testcase_38 AC 123 ms
75,904 KB
testcase_39 AC 154 ms
75,520 KB
testcase_40 AC 158 ms
75,744 KB
testcase_41 AC 121 ms
75,264 KB
testcase_42 AC 171 ms
75,648 KB
testcase_43 AC 70 ms
75,264 KB
testcase_44 AC 104 ms
75,264 KB
testcase_45 AC 348 ms
75,648 KB
testcase_46 AC 95 ms
75,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations

def main():
    N,K = map(int,input().split())
    assert 1 <= N <= 35
    assert 1 <= K <= min(8,N)
    A = list(map(int,input().split()))
    for a in A:
        assert 0 <= a <= 998244352
    ans = 0
    for comb in combinations(A,K):
        sum_comb = sum(comb)
        if sum_comb % 998244353 <= sum_comb % 998:
            ans += 1
    print(ans % 998)
    
if __name__ == "__main__":
    main()
0