結果

問題 No.2561 みんな大好きmod 998
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-06 17:33:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 795 ms / 4,000 ms
コード長 205 bytes
コンパイル時間 650 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 76,540 KB
最終ジャッジ日時 2024-09-06 17:33:48
合計ジャッジ時間 12,728 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,208 KB
testcase_01 AC 89 ms
76,040 KB
testcase_02 AC 36 ms
52,952 KB
testcase_03 AC 752 ms
76,012 KB
testcase_04 AC 733 ms
76,420 KB
testcase_05 AC 767 ms
75,936 KB
testcase_06 AC 739 ms
75,868 KB
testcase_07 AC 37 ms
54,380 KB
testcase_08 AC 34 ms
52,532 KB
testcase_09 AC 50 ms
69,712 KB
testcase_10 AC 36 ms
52,752 KB
testcase_11 AC 156 ms
76,452 KB
testcase_12 AC 33 ms
52,528 KB
testcase_13 AC 34 ms
52,772 KB
testcase_14 AC 36 ms
53,376 KB
testcase_15 AC 754 ms
76,424 KB
testcase_16 AC 35 ms
52,724 KB
testcase_17 AC 36 ms
53,160 KB
testcase_18 AC 46 ms
59,928 KB
testcase_19 AC 567 ms
76,540 KB
testcase_20 AC 49 ms
63,056 KB
testcase_21 AC 34 ms
52,308 KB
testcase_22 AC 34 ms
53,008 KB
testcase_23 AC 41 ms
59,684 KB
testcase_24 AC 34 ms
53,204 KB
testcase_25 AC 33 ms
52,336 KB
testcase_26 AC 184 ms
75,852 KB
testcase_27 AC 760 ms
75,820 KB
testcase_28 AC 232 ms
76,116 KB
testcase_29 AC 107 ms
75,992 KB
testcase_30 AC 227 ms
76,016 KB
testcase_31 AC 423 ms
76,092 KB
testcase_32 AC 128 ms
75,872 KB
testcase_33 AC 104 ms
76,116 KB
testcase_34 AC 795 ms
76,428 KB
testcase_35 AC 102 ms
75,868 KB
testcase_36 AC 100 ms
75,656 KB
testcase_37 AC 73 ms
76,060 KB
testcase_38 AC 162 ms
76,280 KB
testcase_39 AC 227 ms
75,940 KB
testcase_40 AC 216 ms
75,988 KB
testcase_41 AC 167 ms
76,056 KB
testcase_42 AC 245 ms
76,220 KB
testcase_43 AC 77 ms
75,808 KB
testcase_44 AC 128 ms
75,996 KB
testcase_45 AC 526 ms
75,948 KB
testcase_46 AC 119 ms
75,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=list(map(int,input().split()))
from itertools import combinations
c=0
for p in combinations(list(range(n)),k):
	s=sum(a[i] for i in p)
	c+=(s%998244353)<=(s%998)
print(c%998)
0