結果

問題 No.2561 みんな大好きmod 998
ユーザー u_kunu_kun
提出日時 2023-12-02 15:06:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 652 ms / 4,000 ms
コード長 414 bytes
コンパイル時間 481 ms
コンパイル使用メモリ 81,896 KB
実行使用メモリ 75,648 KB
最終ジャッジ日時 2024-09-26 18:05:11
合計ジャッジ時間 10,388 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,096 KB
testcase_01 AC 89 ms
75,600 KB
testcase_02 AC 44 ms
52,096 KB
testcase_03 AC 652 ms
75,604 KB
testcase_04 AC 648 ms
75,520 KB
testcase_05 AC 644 ms
75,520 KB
testcase_06 AC 643 ms
75,264 KB
testcase_07 AC 40 ms
51,840 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 47 ms
60,160 KB
testcase_10 AC 38 ms
51,968 KB
testcase_11 AC 112 ms
75,220 KB
testcase_12 AC 40 ms
52,224 KB
testcase_13 AC 40 ms
52,352 KB
testcase_14 AC 40 ms
51,840 KB
testcase_15 AC 484 ms
75,528 KB
testcase_16 AC 39 ms
52,480 KB
testcase_17 AC 39 ms
52,096 KB
testcase_18 AC 45 ms
58,496 KB
testcase_19 AC 415 ms
75,616 KB
testcase_20 AC 46 ms
58,880 KB
testcase_21 AC 39 ms
52,224 KB
testcase_22 AC 40 ms
51,584 KB
testcase_23 AC 46 ms
58,752 KB
testcase_24 AC 39 ms
52,224 KB
testcase_25 AC 40 ms
51,584 KB
testcase_26 AC 135 ms
75,440 KB
testcase_27 AC 648 ms
75,264 KB
testcase_28 AC 172 ms
75,244 KB
testcase_29 AC 91 ms
75,452 KB
testcase_30 AC 197 ms
75,472 KB
testcase_31 AC 350 ms
75,520 KB
testcase_32 AC 93 ms
75,520 KB
testcase_33 AC 83 ms
75,008 KB
testcase_34 AC 647 ms
75,520 KB
testcase_35 AC 88 ms
75,264 KB
testcase_36 AC 86 ms
75,392 KB
testcase_37 AC 66 ms
69,888 KB
testcase_38 AC 121 ms
75,252 KB
testcase_39 AC 202 ms
75,648 KB
testcase_40 AC 202 ms
75,392 KB
testcase_41 AC 121 ms
75,136 KB
testcase_42 AC 173 ms
75,136 KB
testcase_43 AC 67 ms
69,888 KB
testcase_44 AC 106 ms
75,264 KB
testcase_45 AC 480 ms
75,520 KB
testcase_46 AC 95 ms
75,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations

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

ans = 0

for sel_pattern in combinations(range(N), K):
    S998 = 0
    Slarge = 0
    for i in sel_pattern:
        S998 += (A[i] % 998)
        S998 %= 998
        
        Slarge += (A[i] % 998244353)
        Slarge %= 998244353
        
    if Slarge <= S998:
        ans += 1

print(ans % 998)
    
    
0