結果

問題 No.5 数字のブロック
ユーザー むらためむらため
提出日時 2017-07-29 05:17:58
言語 Nim
(2.2.0)
結果
AC  
実行時間 6 ms / 5,000 ms
コード長 288 bytes
コンパイル時間 3,225 ms
コンパイル使用メモリ 67,288 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-30 01:52:43
合計ジャッジ時間 4,207 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

import sequtils,strutils,algorithm

let
  L = stdin.readline.parseInt
  N = stdin.readline.parseInt
var
  ws = stdin.readline.split(" ").map(parseInt)


ws.sort(system.cmp[int])

var (cnt, width)= (0, 0)
for w in ws:
  width += w
  if width <= L:
    cnt += 1
  else:
    break

echo cnt
0