結果

問題 No.1701 half price
ユーザー harurunharurun
提出日時 2021-10-02 02:08:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 641 ms / 3,000 ms
コード長 411 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 82,704 KB
実行使用メモリ 76,244 KB
最終ジャッジ日時 2024-07-23 03:45:46
合計ジャッジ時間 4,948 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,980 KB
testcase_01 AC 42 ms
59,344 KB
testcase_02 AC 96 ms
75,792 KB
testcase_03 AC 41 ms
59,004 KB
testcase_04 AC 95 ms
75,864 KB
testcase_05 AC 52 ms
64,520 KB
testcase_06 AC 641 ms
76,156 KB
testcase_07 AC 636 ms
76,052 KB
testcase_08 AC 36 ms
53,092 KB
testcase_09 AC 41 ms
59,008 KB
testcase_10 AC 37 ms
52,216 KB
testcase_11 AC 42 ms
59,316 KB
testcase_12 AC 41 ms
59,128 KB
testcase_13 AC 42 ms
60,888 KB
testcase_14 AC 43 ms
60,192 KB
testcase_15 AC 41 ms
60,060 KB
testcase_16 AC 37 ms
53,316 KB
testcase_17 AC 415 ms
76,244 KB
testcase_18 AC 58 ms
68,096 KB
testcase_19 AC 56 ms
73,496 KB
testcase_20 AC 37 ms
52,748 KB
testcase_21 AC 634 ms
76,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  N,W=map(int,input().split())
  a=list(map(int,input().split()))
  ans=set()
  for i in range(1,pow(3,N)):
    s=0
    M=i
    l=[]
    for j in range(N):
      if M%3==1:
        s+=a[j]//2
        l.append(1)
      elif M%3==2:
        s+=a[j]
        l.append(1)
      else:
        l.append(0)
      M//=3
    if s==W:
      ans.add("".join(map(str,l)))
  print(len(ans))
  return    

main()

0