結果

問題 No.2561 みんな大好きmod 998
ユーザー pluto77pluto77
提出日時 2024-05-09 11:35:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,615 ms / 4,000 ms
コード長 201 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-05-09 11:35:56
合計ジャッジ時間 31,505 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
10,368 KB
testcase_01 AC 140 ms
10,368 KB
testcase_02 AC 33 ms
10,496 KB
testcase_03 AC 2,435 ms
10,368 KB
testcase_04 AC 2,435 ms
10,368 KB
testcase_05 AC 2,615 ms
10,496 KB
testcase_06 AC 2,352 ms
10,368 KB
testcase_07 AC 34 ms
10,368 KB
testcase_08 AC 33 ms
10,368 KB
testcase_09 AC 38 ms
10,496 KB
testcase_10 AC 33 ms
10,368 KB
testcase_11 AC 405 ms
10,496 KB
testcase_12 AC 35 ms
10,368 KB
testcase_13 AC 34 ms
10,368 KB
testcase_14 AC 34 ms
10,496 KB
testcase_15 AC 2,562 ms
10,368 KB
testcase_16 AC 34 ms
10,368 KB
testcase_17 AC 33 ms
10,368 KB
testcase_18 AC 34 ms
10,368 KB
testcase_19 AC 1,782 ms
10,624 KB
testcase_20 AC 33 ms
10,368 KB
testcase_21 AC 33 ms
10,368 KB
testcase_22 AC 33 ms
10,368 KB
testcase_23 AC 38 ms
10,368 KB
testcase_24 AC 33 ms
10,368 KB
testcase_25 AC 33 ms
10,368 KB
testcase_26 AC 534 ms
10,496 KB
testcase_27 AC 2,360 ms
10,496 KB
testcase_28 AC 674 ms
10,496 KB
testcase_29 AC 217 ms
10,496 KB
testcase_30 AC 585 ms
10,496 KB
testcase_31 AC 1,171 ms
10,368 KB
testcase_32 AC 309 ms
10,496 KB
testcase_33 AC 210 ms
10,496 KB
testcase_34 AC 2,378 ms
10,496 KB
testcase_35 AC 195 ms
10,368 KB
testcase_36 AC 194 ms
10,368 KB
testcase_37 AC 112 ms
10,368 KB
testcase_38 AC 411 ms
10,368 KB
testcase_39 AC 644 ms
10,496 KB
testcase_40 AC 633 ms
10,368 KB
testcase_41 AC 409 ms
10,368 KB
testcase_42 AC 748 ms
10,368 KB
testcase_43 AC 112 ms
10,496 KB
testcase_44 AC 308 ms
10,496 KB
testcase_45 AC 1,847 ms
10,368 KB
testcase_46 AC 262 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations

n,k=map(int,input().split())
a=list(map(int,input().split()))
res=0
for cmb in combinations(a,k):
 if sum(cmb)%998244353<=sum(cmb)%998:
  res=(res+1)%998
print(res)
0