結果

問題 No.1701 half price
ユーザー harurunharurun
提出日時 2021-10-02 02:05:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 409 bytes
コンパイル時間 838 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 76,412 KB
最終ジャッジ日時 2024-07-23 03:46:12
合計ジャッジ時間 4,541 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,196 KB
testcase_01 AC 42 ms
58,868 KB
testcase_02 AC 93 ms
75,936 KB
testcase_03 AC 39 ms
59,792 KB
testcase_04 AC 99 ms
76,044 KB
testcase_05 AC 49 ms
65,060 KB
testcase_06 AC 597 ms
76,152 KB
testcase_07 AC 615 ms
75,984 KB
testcase_08 WA -
testcase_09 AC 41 ms
59,152 KB
testcase_10 AC 36 ms
52,128 KB
testcase_11 AC 42 ms
59,824 KB
testcase_12 AC 41 ms
58,952 KB
testcase_13 AC 42 ms
59,156 KB
testcase_14 AC 43 ms
60,004 KB
testcase_15 AC 42 ms
59,176 KB
testcase_16 AC 37 ms
52,676 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 36 ms
52,900 KB
testcase_21 AC 607 ms
76,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  N,W=map(int,input().split())
  a=list(map(int,input().split()))
  ans=set()
  for i in range(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