結果

問題 No.50 おもちゃ箱
ユーザー むらためむらため
提出日時 2019-02-07 04:07:23
言語 Nim
(2.0.2)
結果
AC  
実行時間 490 ms / 5,000 ms
コード長 338 bytes
コンパイル時間 3,470 ms
コンパイル使用メモリ 66,556 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 11:26:17
合計ジャッジ時間 6,741 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 50 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 41 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 179 ms
6,944 KB
testcase_18 AC 19 ms
6,940 KB
testcase_19 AC 91 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 6 ms
6,940 KB
testcase_22 AC 204 ms
6,940 KB
testcase_23 AC 7 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 36 ms
6,940 KB
testcase_29 AC 36 ms
6,944 KB
testcase_30 AC 490 ms
6,940 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 72 ms
6,940 KB
testcase_33 AC 268 ms
6,940 KB
testcase_34 AC 3 ms
6,944 KB
testcase_35 AC 142 ms
6,940 KB
testcase_36 AC 74 ms
6,940 KB
testcase_37 AC 46 ms
6,940 KB
testcase_38 AC 24 ms
6,944 KB
testcase_39 AC 36 ms
6,940 KB
testcase_40 AC 271 ms
6,944 KB
testcase_41 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/judge/data/code/Main.nim(2, 10) Warning: Deprecated since v1.5; Use auto instead.; any is deprecated [Deprecated]
/home/judge/data/code/Main.nim(3, 10) Warning: Deprecated since v1.5; Use auto instead.; any is deprecated [Deprecated]

ソースコード

diff #

import sequtils,strutils,algorithm
proc q():any=stdin.readLine
proc R():any=q().split.map(parseInt).sorted cmp
var
 n=q().parseInt
 A=R()
 m=q().parseInt+1
 B=R().reversed
 a=m
while true:(var(T,i,j)=(B,0,0);while i<n and j<m-1:(if T[j]>=A[i]:(T[j]-=A[i];i+=1)else:j+=1);a=a.min j+1;if not A.nextPermutation:break)
echo if a<m: a else: -1
0