結果

問題 No.1463 Hungry Kanten
ユーザー 河野竜也河野竜也
提出日時 2022-06-20 23:00:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,882 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 31,180 KB
最終ジャッジ日時 2024-10-13 11:54:29
合計ジャッジ時間 9,123 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 117 ms
11,392 KB
testcase_03 AC 1,772 ms
10,752 KB
testcase_04 AC 38 ms
10,496 KB
testcase_05 AC 1,882 ms
31,180 KB
testcase_06 AC 29 ms
10,496 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 31 ms
10,496 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 AC 32 ms
10,496 KB
testcase_12 AC 34 ms
10,624 KB
testcase_13 AC 39 ms
10,496 KB
testcase_14 AC 50 ms
11,008 KB
testcase_15 AC 69 ms
10,496 KB
testcase_16 AC 117 ms
11,648 KB
testcase_17 AC 236 ms
13,796 KB
testcase_18 AC 412 ms
11,392 KB
testcase_19 AC 877 ms
20,668 KB
testcase_20 AC 1,812 ms
29,948 KB
testcase_21 AC 32 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=list(map(int,input().split()))
s=set()
for bit in range(1<<n):
  ans1=0
  ans2=1
  count=0
  for i in range(n):
    if bit&(1<<i):
      ans1+=a[i]
      ans2*=a[i]
      count+=1
  if count>=k:
    s.add(ans1)
    s.add(ans2)
print(len(s))
0