結果

問題 No.2561 みんな大好きmod 998
ユーザー lloyzlloyz
提出日時 2023-12-07 00:03:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 610 ms / 4,000 ms
コード長 420 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 76,024 KB
最終ジャッジ日時 2024-09-27 01:55:06
合計ジャッジ時間 9,509 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,968 KB
testcase_01 AC 69 ms
75,776 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 592 ms
75,776 KB
testcase_04 AC 600 ms
75,520 KB
testcase_05 AC 605 ms
75,776 KB
testcase_06 AC 594 ms
75,944 KB
testcase_07 AC 36 ms
52,336 KB
testcase_08 AC 34 ms
51,968 KB
testcase_09 AC 41 ms
59,776 KB
testcase_10 AC 33 ms
51,840 KB
testcase_11 AC 95 ms
75,840 KB
testcase_12 AC 35 ms
52,224 KB
testcase_13 AC 34 ms
52,352 KB
testcase_14 AC 35 ms
52,224 KB
testcase_15 AC 423 ms
76,024 KB
testcase_16 AC 34 ms
51,840 KB
testcase_17 AC 34 ms
51,584 KB
testcase_18 AC 39 ms
59,136 KB
testcase_19 AC 367 ms
75,680 KB
testcase_20 AC 40 ms
59,264 KB
testcase_21 AC 33 ms
51,968 KB
testcase_22 AC 32 ms
52,224 KB
testcase_23 AC 39 ms
59,136 KB
testcase_24 AC 33 ms
52,224 KB
testcase_25 AC 33 ms
52,224 KB
testcase_26 AC 118 ms
75,648 KB
testcase_27 AC 603 ms
75,648 KB
testcase_28 AC 147 ms
75,904 KB
testcase_29 AC 77 ms
75,904 KB
testcase_30 AC 217 ms
75,648 KB
testcase_31 AC 373 ms
75,704 KB
testcase_32 AC 86 ms
75,648 KB
testcase_33 AC 73 ms
75,648 KB
testcase_34 AC 610 ms
75,648 KB
testcase_35 AC 71 ms
75,992 KB
testcase_36 AC 71 ms
75,392 KB
testcase_37 AC 57 ms
71,936 KB
testcase_38 AC 104 ms
75,776 KB
testcase_39 AC 184 ms
75,648 KB
testcase_40 AC 177 ms
75,776 KB
testcase_41 AC 101 ms
75,520 KB
testcase_42 AC 140 ms
75,840 KB
testcase_43 AC 55 ms
71,808 KB
testcase_44 AC 84 ms
75,968 KB
testcase_45 AC 450 ms
75,520 KB
testcase_46 AC 77 ms
75,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations
import sys
input = sys.stdin.readline

n, k = map(int, input().split())
A = list(map(int, input().split()))

ans = 0
mod1 = 998
mod2 = 998244353
for C in combinations(range(n), k):
    res1, res2 = 0, 0
    for i in range(k):
        res1 += A[C[i]]
        res1 %= mod1
        res2 += A[C[i]]
        res2 %= mod2
    if res2 <= res1:
        ans += 1
        ans %= mod1
print(ans)
0