結果

問題 No.2561 みんな大好きmod 998
ユーザー e60e256e60e256
提出日時 2023-12-02 17:20:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 321 ms / 4,000 ms
コード長 687 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-09-26 21:10:20
合計ジャッジ時間 7,593 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,584 KB
testcase_01 AC 142 ms
76,724 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 314 ms
77,568 KB
testcase_04 AC 319 ms
77,440 KB
testcase_05 AC 309 ms
77,440 KB
testcase_06 AC 321 ms
77,440 KB
testcase_07 AC 38 ms
52,224 KB
testcase_08 AC 38 ms
51,584 KB
testcase_09 AC 71 ms
69,376 KB
testcase_10 AC 39 ms
51,840 KB
testcase_11 AC 140 ms
76,288 KB
testcase_12 AC 38 ms
51,712 KB
testcase_13 AC 38 ms
52,096 KB
testcase_14 AC 39 ms
52,096 KB
testcase_15 AC 315 ms
77,452 KB
testcase_16 AC 39 ms
52,352 KB
testcase_17 AC 39 ms
51,584 KB
testcase_18 AC 39 ms
52,480 KB
testcase_19 AC 273 ms
76,800 KB
testcase_20 AC 51 ms
61,952 KB
testcase_21 AC 40 ms
51,840 KB
testcase_22 AC 37 ms
51,712 KB
testcase_23 AC 39 ms
52,352 KB
testcase_24 AC 37 ms
51,712 KB
testcase_25 AC 40 ms
51,584 KB
testcase_26 AC 132 ms
75,904 KB
testcase_27 AC 313 ms
77,184 KB
testcase_28 AC 164 ms
76,928 KB
testcase_29 AC 127 ms
76,692 KB
testcase_30 AC 180 ms
76,816 KB
testcase_31 AC 227 ms
77,184 KB
testcase_32 AC 105 ms
76,032 KB
testcase_33 AC 130 ms
76,300 KB
testcase_34 AC 315 ms
77,440 KB
testcase_35 AC 112 ms
76,544 KB
testcase_36 AC 116 ms
76,160 KB
testcase_37 AC 90 ms
76,032 KB
testcase_38 AC 139 ms
76,544 KB
testcase_39 AC 186 ms
76,944 KB
testcase_40 AC 178 ms
76,952 KB
testcase_41 AC 139 ms
76,800 KB
testcase_42 AC 170 ms
76,288 KB
testcase_43 AC 89 ms
75,776 KB
testcase_44 AC 116 ms
76,288 KB
testcase_45 AC 234 ms
76,416 KB
testcase_46 AC 111 ms
76,160 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-(K-1-la)):
        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