結果

問題 No.2561 みんな大好きmod 998
ユーザー mealymealy
提出日時 2023-12-02 14:53:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 508 ms / 4,000 ms
コード長 775 bytes
コンパイル時間 519 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 75,776 KB
最終ジャッジ日時 2024-09-26 17:40:15
合計ジャッジ時間 9,168 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
52,352 KB
testcase_01 AC 92 ms
75,648 KB
testcase_02 AC 52 ms
52,480 KB
testcase_03 AC 505 ms
75,520 KB
testcase_04 AC 500 ms
75,392 KB
testcase_05 AC 499 ms
75,520 KB
testcase_06 AC 508 ms
75,264 KB
testcase_07 AC 48 ms
52,736 KB
testcase_08 AC 47 ms
52,352 KB
testcase_09 AC 57 ms
59,776 KB
testcase_10 AC 48 ms
52,096 KB
testcase_11 AC 110 ms
75,392 KB
testcase_12 AC 48 ms
52,096 KB
testcase_13 AC 47 ms
52,480 KB
testcase_14 AC 48 ms
52,608 KB
testcase_15 AC 335 ms
75,520 KB
testcase_16 AC 46 ms
52,608 KB
testcase_17 AC 44 ms
52,352 KB
testcase_18 AC 50 ms
58,752 KB
testcase_19 AC 305 ms
75,520 KB
testcase_20 AC 50 ms
58,752 KB
testcase_21 AC 43 ms
52,352 KB
testcase_22 AC 44 ms
52,480 KB
testcase_23 AC 54 ms
58,752 KB
testcase_24 AC 44 ms
52,480 KB
testcase_25 AC 43 ms
52,480 KB
testcase_26 AC 114 ms
75,264 KB
testcase_27 AC 497 ms
75,520 KB
testcase_28 AC 131 ms
75,520 KB
testcase_29 AC 85 ms
75,520 KB
testcase_30 AC 166 ms
75,520 KB
testcase_31 AC 278 ms
75,264 KB
testcase_32 AC 90 ms
75,392 KB
testcase_33 AC 81 ms
75,520 KB
testcase_34 AC 491 ms
75,520 KB
testcase_35 AC 88 ms
75,776 KB
testcase_36 AC 88 ms
75,264 KB
testcase_37 AC 71 ms
69,632 KB
testcase_38 AC 109 ms
75,776 KB
testcase_39 AC 175 ms
75,520 KB
testcase_40 AC 175 ms
75,648 KB
testcase_41 AC 110 ms
75,392 KB
testcase_42 AC 140 ms
75,520 KB
testcase_43 AC 66 ms
70,016 KB
testcase_44 AC 90 ms
75,520 KB
testcase_45 AC 366 ms
75,520 KB
testcase_46 AC 85 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Input_kyopro:
    def II(self): return int(input())
    def MI(self): return map(int,input().split())
    def MS(self): return map(str,input().split())
    def LMI(self): return list(self.MI())
    def LMS(self): return list(self.MS())
    def LLI(self,N): return [self.LMI() for _ in range(N)]
    def LLS(self,N): return [self.LMS() for _ in range(N)]
    def LS(self,N): return [input() for _ in range(N)]
    def LSL(self,N): return [list(input()) for _ in range(N)]
    def LI(self,N): return [self.II() for _ in range(N)]
I=Input_kyopro()
#入力
import math
from itertools import combinations
Mod=998
N,K=I.MI()
A=I.LMI()
ans=0
for p in combinations(range(N),K):
    S=0
    for k in p:
        S+=A[k]
    if S%998244353 <= S%998:
        ans+=1
print(ans%998)
0