結果

問題 No.2561 みんな大好きmod 998
ユーザー kamath0165kamath0165
提出日時 2023-12-02 15:44:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 232 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 486,552 KB
最終ジャッジ日時 2024-09-26 19:11:48
合計ジャッジ時間 21,336 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,456 KB
testcase_01 AC 106 ms
96,512 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 1,619 ms
486,164 KB
testcase_04 AC 1,559 ms
486,296 KB
testcase_05 AC 1,577 ms
486,296 KB
testcase_06 AC 1,621 ms
486,032 KB
testcase_07 AC 42 ms
52,096 KB
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 64 ms
65,920 KB
testcase_10 AC 47 ms
51,856 KB
testcase_11 WA -
testcase_12 AC 39 ms
51,840 KB
testcase_13 AC 41 ms
51,968 KB
testcase_14 AC 41 ms
51,968 KB
testcase_15 WA -
testcase_16 AC 40 ms
52,352 KB
testcase_17 AC 39 ms
51,968 KB
testcase_18 AC 47 ms
58,112 KB
testcase_19 WA -
testcase_20 AC 50 ms
61,056 KB
testcase_21 AC 40 ms
51,712 KB
testcase_22 AC 38 ms
51,712 KB
testcase_23 AC 45 ms
57,600 KB
testcase_24 AC 41 ms
51,584 KB
testcase_25 AC 40 ms
51,968 KB
testcase_26 WA -
testcase_27 AC 1,546 ms
486,168 KB
testcase_28 AC 382 ms
180,840 KB
testcase_29 AC 151 ms
105,436 KB
testcase_30 AC 412 ms
163,908 KB
testcase_31 AC 946 ms
288,780 KB
testcase_32 AC 180 ms
124,320 KB
testcase_33 AC 140 ms
105,444 KB
testcase_34 AC 1,549 ms
486,548 KB
testcase_35 AC 132 ms
105,216 KB
testcase_36 AC 130 ms
104,832 KB
testcase_37 AC 92 ms
90,496 KB
testcase_38 AC 221 ms
137,184 KB
testcase_39 AC 307 ms
163,388 KB
testcase_40 AC 316 ms
163,768 KB
testcase_41 AC 228 ms
137,564 KB
testcase_42 AC 361 ms
180,448 KB
testcase_43 AC 92 ms
90,368 KB
testcase_44 AC 175 ms
122,468 KB
testcase_45 AC 1,000 ms
362,768 KB
testcase_46 AC 150 ms
108,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools as it
n,k= map(int,input().split())
a= list(map(int,input().split()))
ans= 0
num= list(it.combinations(a,k))
for i in range(len(num)):
  x= sum(num[i])
  if (x % 99824453) <= (x % 998):
    ans += 1
print(ans % 998)
0