結果

問題 No.2561 みんな大好きmod 998
ユーザー ゼットゼット
提出日時 2023-12-20 23:41:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 574 ms / 4,000 ms
コード長 295 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 76,164 KB
最終ジャッジ日時 2024-09-27 10:16:30
合計ジャッジ時間 8,932 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 74 ms
75,904 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 561 ms
75,768 KB
testcase_04 AC 564 ms
76,160 KB
testcase_05 AC 571 ms
76,032 KB
testcase_06 AC 561 ms
75,992 KB
testcase_07 AC 38 ms
52,224 KB
testcase_08 AC 36 ms
52,096 KB
testcase_09 AC 43 ms
60,160 KB
testcase_10 AC 36 ms
51,712 KB
testcase_11 AC 96 ms
75,904 KB
testcase_12 AC 38 ms
52,352 KB
testcase_13 AC 37 ms
52,224 KB
testcase_14 AC 38 ms
52,352 KB
testcase_15 AC 357 ms
76,160 KB
testcase_16 AC 37 ms
52,096 KB
testcase_17 AC 37 ms
52,352 KB
testcase_18 AC 43 ms
59,776 KB
testcase_19 AC 337 ms
76,164 KB
testcase_20 AC 44 ms
59,904 KB
testcase_21 AC 37 ms
51,968 KB
testcase_22 AC 36 ms
52,096 KB
testcase_23 AC 43 ms
59,392 KB
testcase_24 AC 36 ms
52,096 KB
testcase_25 AC 38 ms
51,840 KB
testcase_26 AC 115 ms
76,000 KB
testcase_27 AC 574 ms
76,056 KB
testcase_28 AC 138 ms
75,776 KB
testcase_29 AC 74 ms
75,808 KB
testcase_30 AC 175 ms
76,160 KB
testcase_31 AC 309 ms
75,952 KB
testcase_32 AC 84 ms
75,632 KB
testcase_33 AC 74 ms
75,776 KB
testcase_34 AC 571 ms
75,832 KB
testcase_35 AC 73 ms
75,760 KB
testcase_36 AC 74 ms
76,032 KB
testcase_37 AC 56 ms
72,320 KB
testcase_38 AC 96 ms
75,904 KB
testcase_39 AC 179 ms
75,916 KB
testcase_40 AC 178 ms
75,776 KB
testcase_41 AC 98 ms
75,984 KB
testcase_42 AC 138 ms
75,904 KB
testcase_43 AC 56 ms
72,192 KB
testcase_44 AC 84 ms
76,032 KB
testcase_45 AC 412 ms
75,776 KB
testcase_46 AC 77 ms
76,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
P=list(map(int,input().split()))
L=[i for i in range(N)]
from itertools import combinations
result=0
for A in combinations(L,K):
  a=0
  b=0
  for i in range(K):
    a+=P[A[i]]
    b+=P[A[i]]
  a%=998244353
  b%=998
  if b>=a:
    result+=1
result%=998
print(result)
0