結果

問題 No.617 Nafmo、買い出しに行く
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2018-06-16 02:16:48
言語 Nim
(2.0.2)
結果
WA  
実行時間 -
コード長 380 bytes
コンパイル時間 3,143 ms
コンパイル使用メモリ 68,764 KB
実行使用メモリ 4,500 KB
最終ジャッジ日時 2023-09-13 05:46:25
合計ジャッジ時間 4,724 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
4,380 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 91 ms
4,380 KB
testcase_16 AC 91 ms
4,380 KB
testcase_17 AC 91 ms
4,380 KB
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 1 ms
4,376 KB
testcase_20 AC 2 ms
4,380 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import strutils, sequtils, math

var
  A = newSeq[int]()
  best = 0
let
  NK = stdin.readLine.split.map parseInt
  (N, K) = (NK[0], NK[1])

for i in 0 ..< N:
  A.add stdin.readLine.parseInt

for i in 0 ..< (2 ^ N):
  var cnt = 0
  for j, c in i.toBin(N):
    if c == '1':
      cnt += A[j]
      if cnt <= K and cnt > best:
        best = cnt
      else:
        break

echo best
0