結果

問題 No.2561 みんな大好きmod 998
ユーザー Basin-BugBasin-Bug
提出日時 2023-12-02 14:49:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 548 ms / 4,000 ms
コード長 323 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 75,648 KB
最終ジャッジ日時 2024-09-26 17:30:14
合計ジャッジ時間 9,261 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,968 KB
testcase_01 AC 96 ms
75,264 KB
testcase_02 AC 47 ms
51,584 KB
testcase_03 AC 542 ms
75,264 KB
testcase_04 AC 546 ms
75,264 KB
testcase_05 AC 548 ms
75,264 KB
testcase_06 AC 546 ms
75,520 KB
testcase_07 AC 46 ms
51,968 KB
testcase_08 AC 42 ms
51,584 KB
testcase_09 AC 53 ms
59,904 KB
testcase_10 AC 44 ms
51,456 KB
testcase_11 AC 113 ms
75,520 KB
testcase_12 AC 44 ms
51,712 KB
testcase_13 AC 44 ms
51,968 KB
testcase_14 AC 43 ms
52,096 KB
testcase_15 AC 408 ms
75,520 KB
testcase_16 AC 44 ms
51,968 KB
testcase_17 AC 43 ms
51,584 KB
testcase_18 AC 49 ms
58,752 KB
testcase_19 AC 356 ms
75,392 KB
testcase_20 AC 49 ms
58,624 KB
testcase_21 AC 43 ms
51,968 KB
testcase_22 AC 43 ms
51,712 KB
testcase_23 AC 49 ms
58,368 KB
testcase_24 AC 43 ms
51,840 KB
testcase_25 AC 43 ms
51,584 KB
testcase_26 AC 128 ms
75,520 KB
testcase_27 AC 536 ms
75,520 KB
testcase_28 AC 153 ms
75,264 KB
testcase_29 AC 90 ms
75,264 KB
testcase_30 AC 179 ms
75,264 KB
testcase_31 AC 306 ms
75,392 KB
testcase_32 AC 99 ms
75,392 KB
testcase_33 AC 89 ms
75,392 KB
testcase_34 AC 545 ms
75,264 KB
testcase_35 AC 92 ms
75,264 KB
testcase_36 AC 91 ms
75,520 KB
testcase_37 AC 76 ms
69,376 KB
testcase_38 AC 123 ms
75,392 KB
testcase_39 AC 180 ms
75,264 KB
testcase_40 AC 177 ms
75,648 KB
testcase_41 AC 112 ms
75,392 KB
testcase_42 AC 152 ms
75,264 KB
testcase_43 AC 67 ms
69,504 KB
testcase_44 AC 99 ms
75,392 KB
testcase_45 AC 401 ms
75,392 KB
testcase_46 AC 93 ms
75,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

N, K = map(int, input().split())
A = list(map(int, input().split()))
ans = 0
MOD1 = 998
MOD2 = 998244353

for i in itertools.combinations(A, K):
  cnt1 = 0
  cnt2 = 0
  for j in i:
    cnt1 += j
    cnt2 += j
    cnt1 %= MOD1
    cnt2 %= MOD2
  
  if cnt1 >= cnt2:
    ans += 1
    ans %= MOD1

print(ans)
0