結果

問題 No.2561 みんな大好きmod 998
ユーザー けんぴんけんぴん
提出日時 2023-11-06 00:36:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 390 ms / 4,000 ms
コード長 480 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 75,648 KB
最終ジャッジ日時 2024-09-25 22:54:42
合計ジャッジ時間 7,282 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 65 ms
75,136 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 375 ms
75,648 KB
testcase_04 AC 386 ms
75,392 KB
testcase_05 AC 372 ms
75,392 KB
testcase_06 AC 384 ms
75,520 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 AC 36 ms
51,712 KB
testcase_09 AC 46 ms
64,128 KB
testcase_10 AC 37 ms
51,840 KB
testcase_11 AC 98 ms
75,392 KB
testcase_12 AC 36 ms
51,840 KB
testcase_13 AC 36 ms
51,712 KB
testcase_14 AC 34 ms
51,712 KB
testcase_15 AC 390 ms
75,400 KB
testcase_16 AC 37 ms
52,608 KB
testcase_17 AC 36 ms
51,968 KB
testcase_18 AC 40 ms
58,240 KB
testcase_19 AC 280 ms
75,136 KB
testcase_20 AC 44 ms
59,776 KB
testcase_21 AC 35 ms
51,712 KB
testcase_22 AC 35 ms
51,584 KB
testcase_23 AC 38 ms
57,600 KB
testcase_24 AC 34 ms
51,968 KB
testcase_25 AC 35 ms
52,352 KB
testcase_26 AC 114 ms
75,264 KB
testcase_27 AC 375 ms
75,648 KB
testcase_28 AC 140 ms
75,136 KB
testcase_29 AC 79 ms
75,264 KB
testcase_30 AC 135 ms
75,264 KB
testcase_31 AC 233 ms
75,520 KB
testcase_32 AC 91 ms
75,316 KB
testcase_33 AC 76 ms
75,392 KB
testcase_34 AC 374 ms
75,408 KB
testcase_35 AC 73 ms
75,384 KB
testcase_36 AC 75 ms
75,264 KB
testcase_37 AC 61 ms
75,136 KB
testcase_38 AC 101 ms
75,392 KB
testcase_39 AC 126 ms
75,492 KB
testcase_40 AC 127 ms
75,164 KB
testcase_41 AC 98 ms
75,208 KB
testcase_42 AC 146 ms
75,264 KB
testcase_43 AC 61 ms
75,520 KB
testcase_44 AC 85 ms
75,488 KB
testcase_45 AC 281 ms
75,264 KB
testcase_46 AC 81 ms
75,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# combinationsで組み合わせを列挙
from itertools import combinations

def main():
    N,K = map(int,input().split())
    assert 1 <= N <= 28
    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