結果

問題 No.2561 みんな大好きmod 998
ユーザー ありあけありあけ
提出日時 2024-09-19 20:05:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,159 ms / 4,000 ms
コード長 238 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 378,240 KB
最終ジャッジ日時 2024-09-19 20:06:03
合計ジャッジ時間 38,653 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 156 ms
25,600 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 3,159 ms
377,752 KB
testcase_04 AC 3,096 ms
378,072 KB
testcase_05 AC 3,155 ms
378,240 KB
testcase_06 AC 3,109 ms
378,112 KB
testcase_07 AC 27 ms
10,496 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 31 ms
11,136 KB
testcase_10 AC 25 ms
10,624 KB
testcase_11 AC 478 ms
59,776 KB
testcase_12 AC 26 ms
10,624 KB
testcase_13 AC 24 ms
10,496 KB
testcase_14 AC 26 ms
10,496 KB
testcase_15 AC 3,099 ms
377,984 KB
testcase_16 AC 29 ms
10,496 KB
testcase_17 AC 27 ms
10,496 KB
testcase_18 AC 28 ms
10,752 KB
testcase_19 AC 2,347 ms
272,896 KB
testcase_20 AC 27 ms
10,752 KB
testcase_21 AC 27 ms
10,624 KB
testcase_22 AC 26 ms
10,624 KB
testcase_23 AC 26 ms
10,624 KB
testcase_24 AC 25 ms
10,624 KB
testcase_25 AC 26 ms
10,496 KB
testcase_26 AC 655 ms
77,568 KB
testcase_27 AC 2,962 ms
377,904 KB
testcase_28 AC 816 ms
101,248 KB
testcase_29 AC 243 ms
35,584 KB
testcase_30 AC 756 ms
97,408 KB
testcase_31 AC 1,538 ms
195,328 KB
testcase_32 AC 369 ms
49,152 KB
testcase_33 AC 256 ms
35,712 KB
testcase_34 AC 2,955 ms
377,984 KB
testcase_35 AC 233 ms
34,048 KB
testcase_36 AC 235 ms
34,048 KB
testcase_37 AC 121 ms
20,864 KB
testcase_38 AC 487 ms
59,520 KB
testcase_39 AC 814 ms
97,408 KB
testcase_40 AC 826 ms
97,664 KB
testcase_41 AC 500 ms
59,648 KB
testcase_42 AC 897 ms
101,248 KB
testcase_43 AC 131 ms
21,120 KB
testcase_44 AC 358 ms
46,080 KB
testcase_45 AC 2,342 ms
272,896 KB
testcase_46 AC 304 ms
40,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations

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

B = list(combinations(A,K))
ans = 0
for b in B:
    if sum(b)%998244353 <= sum(b)%998:
        ans += 1

ans = ans % 998
print(ans)


0