結果

問題 No.2561 みんな大好きmod 998
ユーザー nzm_ortnzm_ort
提出日時 2023-12-02 15:07:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,452 ms / 4,000 ms
コード長 373 bytes
コンパイル時間 647 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-09-26 18:07:04
合計ジャッジ時間 18,068 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 96 ms
10,624 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 1,185 ms
10,624 KB
testcase_04 AC 1,242 ms
10,624 KB
testcase_05 AC 1,452 ms
10,496 KB
testcase_06 AC 1,225 ms
10,496 KB
testcase_07 AC 31 ms
10,496 KB
testcase_08 AC 28 ms
10,496 KB
testcase_09 AC 31 ms
10,496 KB
testcase_10 AC 27 ms
10,368 KB
testcase_11 AC 237 ms
10,496 KB
testcase_12 AC 28 ms
10,368 KB
testcase_13 AC 27 ms
10,496 KB
testcase_14 AC 29 ms
10,496 KB
testcase_15 AC 1,417 ms
10,624 KB
testcase_16 AC 28 ms
10,496 KB
testcase_17 AC 27 ms
10,624 KB
testcase_18 AC 28 ms
10,496 KB
testcase_19 AC 1,029 ms
10,624 KB
testcase_20 AC 28 ms
10,624 KB
testcase_21 AC 28 ms
10,624 KB
testcase_22 AC 28 ms
10,624 KB
testcase_23 AC 28 ms
10,496 KB
testcase_24 AC 27 ms
10,624 KB
testcase_25 AC 27 ms
10,496 KB
testcase_26 AC 307 ms
10,624 KB
testcase_27 AC 1,175 ms
10,624 KB
testcase_28 AC 334 ms
10,496 KB
testcase_29 AC 127 ms
10,624 KB
testcase_30 AC 349 ms
10,624 KB
testcase_31 AC 633 ms
10,496 KB
testcase_32 AC 146 ms
10,624 KB
testcase_33 AC 126 ms
10,624 KB
testcase_34 AC 1,179 ms
10,496 KB
testcase_35 AC 102 ms
10,496 KB
testcase_36 AC 99 ms
10,624 KB
testcase_37 AC 71 ms
10,624 KB
testcase_38 AC 246 ms
10,496 KB
testcase_39 AC 403 ms
10,624 KB
testcase_40 AC 407 ms
10,624 KB
testcase_41 AC 248 ms
10,624 KB
testcase_42 AC 410 ms
10,624 KB
testcase_43 AC 70 ms
10,624 KB
testcase_44 AC 190 ms
10,496 KB
testcase_45 AC 1,076 ms
10,624 KB
testcase_46 AC 151 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(100000)
n, k = map(int, input().split())
a = list(map(int, input().split()))
mod1 = 998
mod2 = 998244353

ans = 0

def dfs(idx, s, num):
    global ans
    if num==k:
        if s%mod1>=s%mod2: ans+=1
        return

    for i in range(idx+1, n):
        dfs(i, s+a[i], num+1)
        
for j in range(n):
    dfs(j, a[j], 1)
print(ans%mod1)
0