結果

問題 No.2561 みんな大好きmod 998
ユーザー MasKoaTSMasKoaTS
提出日時 2024-01-03 13:37:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,594 ms / 4,000 ms
コード長 348 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 76,380 KB
最終ジャッジ日時 2024-09-27 18:24:44
合計ジャッジ時間 21,369 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,484 KB
testcase_01 AC 126 ms
76,244 KB
testcase_02 AC 36 ms
52,932 KB
testcase_03 AC 1,594 ms
75,968 KB
testcase_04 AC 1,528 ms
76,380 KB
testcase_05 AC 1,504 ms
76,028 KB
testcase_06 AC 1,522 ms
76,036 KB
testcase_07 AC 42 ms
58,404 KB
testcase_08 AC 38 ms
52,824 KB
testcase_09 AC 68 ms
75,856 KB
testcase_10 AC 39 ms
52,200 KB
testcase_11 AC 297 ms
75,968 KB
testcase_12 AC 38 ms
53,284 KB
testcase_13 AC 39 ms
53,280 KB
testcase_14 AC 41 ms
59,460 KB
testcase_15 AC 1,541 ms
76,356 KB
testcase_16 AC 40 ms
58,404 KB
testcase_17 AC 37 ms
52,356 KB
testcase_18 AC 50 ms
62,492 KB
testcase_19 AC 1,135 ms
76,272 KB
testcase_20 AC 57 ms
68,904 KB
testcase_21 AC 38 ms
52,948 KB
testcase_22 AC 37 ms
52,680 KB
testcase_23 AC 48 ms
62,092 KB
testcase_24 AC 38 ms
52,644 KB
testcase_25 AC 38 ms
52,628 KB
testcase_26 AC 392 ms
75,948 KB
testcase_27 AC 1,569 ms
76,280 KB
testcase_28 AC 491 ms
76,380 KB
testcase_29 AC 174 ms
75,916 KB
testcase_30 AC 410 ms
75,820 KB
testcase_31 AC 780 ms
76,136 KB
testcase_32 AC 236 ms
76,260 KB
testcase_33 AC 180 ms
76,252 KB
testcase_34 AC 1,521 ms
76,108 KB
testcase_35 AC 170 ms
76,172 KB
testcase_36 AC 177 ms
75,824 KB
testcase_37 AC 109 ms
75,936 KB
testcase_38 AC 286 ms
76,276 KB
testcase_39 AC 407 ms
75,840 KB
testcase_40 AC 412 ms
76,360 KB
testcase_41 AC 288 ms
75,956 KB
testcase_42 AC 491 ms
76,120 KB
testcase_43 AC 116 ms
76,204 KB
testcase_44 AC 233 ms
76,328 KB
testcase_45 AC 1,123 ms
76,316 KB
testcase_46 AC 209 ms
76,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations
mod = 998
MOD = 998244353

n, m = map(int, input().split())
a = list(map(int, input().split()))

b = [x % mod for x in a]
c = [x % MOD for x in a]
ans = 0
for tup in combinations([*range(n)], m):
	s1 = sum([b[k] for k in tup]) % mod
	s2 = sum([c[k] for k in tup]) % MOD
	if(s1 >= s2):
		ans += 1
print(ans % mod)
0