結果

問題 No.2561 みんな大好きmod 998
ユーザー e60e256e60e256
提出日時 2023-12-02 17:21:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 452 ms / 4,000 ms
コード長 678 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-09-26 21:10:59
合計ジャッジ時間 9,617 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 177 ms
77,360 KB
testcase_02 AC 43 ms
52,096 KB
testcase_03 AC 420 ms
77,824 KB
testcase_04 AC 380 ms
77,056 KB
testcase_05 AC 405 ms
77,056 KB
testcase_06 AC 426 ms
77,056 KB
testcase_07 AC 47 ms
52,096 KB
testcase_08 AC 47 ms
51,968 KB
testcase_09 AC 88 ms
70,400 KB
testcase_10 AC 47 ms
51,840 KB
testcase_11 AC 166 ms
76,544 KB
testcase_12 AC 47 ms
51,712 KB
testcase_13 AC 49 ms
51,968 KB
testcase_14 AC 47 ms
51,712 KB
testcase_15 AC 452 ms
77,056 KB
testcase_16 AC 49 ms
51,712 KB
testcase_17 AC 52 ms
51,712 KB
testcase_18 AC 49 ms
52,224 KB
testcase_19 AC 416 ms
77,440 KB
testcase_20 AC 49 ms
59,136 KB
testcase_21 AC 41 ms
52,096 KB
testcase_22 AC 41 ms
51,584 KB
testcase_23 AC 43 ms
52,096 KB
testcase_24 AC 41 ms
51,712 KB
testcase_25 AC 42 ms
52,096 KB
testcase_26 AC 181 ms
76,672 KB
testcase_27 AC 422 ms
77,312 KB
testcase_28 AC 200 ms
76,544 KB
testcase_29 AC 143 ms
76,288 KB
testcase_30 AC 226 ms
76,672 KB
testcase_31 AC 298 ms
76,672 KB
testcase_32 AC 136 ms
76,288 KB
testcase_33 AC 146 ms
76,416 KB
testcase_34 AC 435 ms
76,928 KB
testcase_35 AC 127 ms
76,416 KB
testcase_36 AC 126 ms
76,160 KB
testcase_37 AC 110 ms
76,416 KB
testcase_38 AC 162 ms
76,800 KB
testcase_39 AC 219 ms
76,416 KB
testcase_40 AC 201 ms
76,416 KB
testcase_41 AC 153 ms
76,544 KB
testcase_42 AC 180 ms
76,032 KB
testcase_43 AC 103 ms
76,160 KB
testcase_44 AC 137 ms
76,288 KB
testcase_45 AC 324 ms
76,800 KB
testcase_46 AC 120 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

itemsum = 0

# 全探索でやったらTLEになった。

arr = []
ans = 0
def choose_rec(K, N):
    global itemsum
    global ans
    if (len(arr) == K):
        S998 = itemsum % 998
        S998244353 = itemsum % 998244353
        if (S998244353 <= S998):
            ans = ans + 1
        return
    if (len(arr) == 0):
        s = 1
    else:
        s = arr[-1] + 1    
    la = len(arr)
    #print(K-1-la)
    for i in range(s, N+1):
        arr.append(i)
        itemsum += A[i-1]
        choose_rec(K, N)
        itemsum -= A[i-1]
        arr.pop()
    return

choose_rec(K, N)
    
print(ans % 998)
0