結果

問題 No.2561 みんな大好きmod 998
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2023-11-24 00:24:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,460 ms / 4,000 ms
コード長 438 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-26 08:26:51
合計ジャッジ時間 39,117 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,496 KB
testcase_01 AC 157 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 2,602 ms
10,752 KB
testcase_04 AC 3,120 ms
10,624 KB
testcase_05 AC 3,460 ms
10,752 KB
testcase_06 AC 2,961 ms
10,752 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 33 ms
10,752 KB
testcase_10 AC 27 ms
10,624 KB
testcase_11 AC 506 ms
10,752 KB
testcase_12 AC 26 ms
10,624 KB
testcase_13 AC 26 ms
10,752 KB
testcase_14 AC 27 ms
10,752 KB
testcase_15 AC 3,358 ms
10,752 KB
testcase_16 AC 28 ms
10,624 KB
testcase_17 AC 26 ms
10,624 KB
testcase_18 AC 28 ms
10,624 KB
testcase_19 AC 2,474 ms
10,752 KB
testcase_20 AC 28 ms
10,496 KB
testcase_21 AC 27 ms
10,624 KB
testcase_22 AC 28 ms
10,496 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 27 ms
10,752 KB
testcase_25 AC 28 ms
10,752 KB
testcase_26 AC 704 ms
10,752 KB
testcase_27 AC 3,066 ms
10,624 KB
testcase_28 AC 858 ms
10,752 KB
testcase_29 AC 259 ms
10,624 KB
testcase_30 AC 807 ms
10,624 KB
testcase_31 AC 1,598 ms
10,624 KB
testcase_32 AC 330 ms
10,496 KB
testcase_33 AC 257 ms
10,752 KB
testcase_34 AC 3,155 ms
10,752 KB
testcase_35 AC 218 ms
10,496 KB
testcase_36 AC 216 ms
10,624 KB
testcase_37 AC 122 ms
10,496 KB
testcase_38 AC 524 ms
10,624 KB
testcase_39 AC 879 ms
10,752 KB
testcase_40 AC 872 ms
10,624 KB
testcase_41 AC 526 ms
10,624 KB
testcase_42 AC 940 ms
10,752 KB
testcase_43 AC 123 ms
10,496 KB
testcase_44 AC 395 ms
10,624 KB
testcase_45 AC 2,496 ms
10,624 KB
testcase_46 AC 291 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0
lst = [-1]


def dfs(lst):
    global ans
    if len(lst) == K + 1:
        # print(lst[1:])
        S = 0
        for x in lst[1:]:
            S += A[x]
        if S % 998244353 <= S % 998:
            ans += 1
    else:
        for i in range(lst[-1] + 1, N):
            lst.append(i)
            dfs(lst)
            lst.pop()


dfs(lst)
print(ans % 998)
0