結果

問題 No.2561 みんな大好きmod 998
ユーザー n_nan_na
提出日時 2024-01-02 23:08:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 948 ms / 4,000 ms
コード長 662 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 80,208 KB
最終ジャッジ日時 2024-09-27 18:21:01
合計ジャッジ時間 15,776 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,928 KB
testcase_01 AC 248 ms
78,312 KB
testcase_02 AC 38 ms
53,912 KB
testcase_03 AC 927 ms
79,460 KB
testcase_04 AC 892 ms
79,516 KB
testcase_05 AC 865 ms
79,784 KB
testcase_06 AC 872 ms
79,532 KB
testcase_07 AC 37 ms
52,720 KB
testcase_08 AC 36 ms
52,192 KB
testcase_09 AC 85 ms
76,428 KB
testcase_10 AC 37 ms
52,528 KB
testcase_11 AC 284 ms
78,012 KB
testcase_12 AC 36 ms
52,680 KB
testcase_13 AC 37 ms
53,692 KB
testcase_14 AC 38 ms
53,700 KB
testcase_15 AC 948 ms
80,208 KB
testcase_16 AC 37 ms
52,400 KB
testcase_17 AC 36 ms
52,568 KB
testcase_18 AC 42 ms
58,908 KB
testcase_19 AC 792 ms
80,048 KB
testcase_20 AC 45 ms
61,396 KB
testcase_21 AC 36 ms
53,032 KB
testcase_22 AC 36 ms
52,772 KB
testcase_23 AC 42 ms
59,684 KB
testcase_24 AC 37 ms
52,556 KB
testcase_25 AC 37 ms
52,788 KB
testcase_26 AC 333 ms
78,000 KB
testcase_27 AC 910 ms
79,912 KB
testcase_28 AC 373 ms
77,504 KB
testcase_29 AC 228 ms
77,644 KB
testcase_30 AC 406 ms
78,228 KB
testcase_31 AC 570 ms
79,744 KB
testcase_32 AC 204 ms
77,232 KB
testcase_33 AC 240 ms
77,700 KB
testcase_34 AC 882 ms
79,520 KB
testcase_35 AC 172 ms
76,880 KB
testcase_36 AC 168 ms
76,872 KB
testcase_37 AC 141 ms
76,824 KB
testcase_38 AC 282 ms
78,496 KB
testcase_39 AC 403 ms
78,236 KB
testcase_40 AC 393 ms
78,260 KB
testcase_41 AC 284 ms
78,148 KB
testcase_42 AC 368 ms
77,888 KB
testcase_43 AC 143 ms
77,308 KB
testcase_44 AC 251 ms
77,984 KB
testcase_45 AC 711 ms
79,312 KB
testcase_46 AC 188 ms
76,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)

#-------------------
def rec(per):
    global ans
    
    if len(per) == K:
        t1,t2 = 0,0
        for x in per:
            t1 += A[x]
            t1 %= m1
            t2 += A[x]
            t2 %= m2
        if t2 <= t1:
            ans += 1
            ans %= m1
        return
    
    lst = per[-1]
    if lst == N-1:
        return
    
    for nxt in range(lst+1, N, 1):
        per.append(nxt)
        rec(per[:])
        per.pop()

#-------------------
m1 = 998
m2 = 998244353

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

ans = 0
for i in range(N):
    P = [i]
    rec(P)

print(ans)
0