結果

問題 No.2561 みんな大好きmod 998
ユーザー kamath0165kamath0165
提出日時 2023-12-02 16:40:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 232 bytes
コンパイル時間 659 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 377,984 KB
最終ジャッジ日時 2024-09-26 20:36:25
合計ジャッジ時間 33,935 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 AC 127 ms
25,728 KB
testcase_02 AC 27 ms
10,368 KB
testcase_03 AC 2,784 ms
377,856 KB
testcase_04 AC 2,690 ms
377,984 KB
testcase_05 AC 2,800 ms
377,856 KB
testcase_06 AC 2,683 ms
377,984 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 26 ms
10,368 KB
testcase_09 AC 31 ms
11,136 KB
testcase_10 AC 25 ms
10,368 KB
testcase_11 WA -
testcase_12 AC 28 ms
10,496 KB
testcase_13 AC 28 ms
10,496 KB
testcase_14 AC 27 ms
10,496 KB
testcase_15 WA -
testcase_16 AC 28 ms
10,624 KB
testcase_17 AC 26 ms
10,496 KB
testcase_18 AC 26 ms
10,496 KB
testcase_19 WA -
testcase_20 AC 27 ms
10,496 KB
testcase_21 AC 27 ms
10,624 KB
testcase_22 AC 26 ms
10,368 KB
testcase_23 AC 27 ms
10,624 KB
testcase_24 AC 27 ms
10,368 KB
testcase_25 AC 26 ms
10,368 KB
testcase_26 WA -
testcase_27 AC 2,544 ms
377,856 KB
testcase_28 AC 736 ms
101,120 KB
testcase_29 AC 226 ms
35,584 KB
testcase_30 AC 659 ms
97,408 KB
testcase_31 AC 1,301 ms
195,328 KB
testcase_32 AC 315 ms
48,896 KB
testcase_33 AC 215 ms
35,840 KB
testcase_34 AC 2,558 ms
377,856 KB
testcase_35 AC 201 ms
34,048 KB
testcase_36 AC 205 ms
34,048 KB
testcase_37 AC 109 ms
20,992 KB
testcase_38 AC 437 ms
59,776 KB
testcase_39 AC 688 ms
97,408 KB
testcase_40 AC 693 ms
97,408 KB
testcase_41 AC 427 ms
59,776 KB
testcase_42 AC 788 ms
101,120 KB
testcase_43 AC 106 ms
20,864 KB
testcase_44 AC 316 ms
45,952 KB
testcase_45 AC 1,971 ms
273,024 KB
testcase_46 AC 268 ms
40,832 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