結果

問題 No.50 おもちゃ箱
ユーザー リチウムリチウム
提出日時 2014-10-26 23:39:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 807 bytes
コンパイル時間 2,187 ms
コンパイル使用メモリ 78,068 KB
実行使用メモリ 54,380 KB
最終ジャッジ日時 2024-06-09 17:42:45
合計ジャッジ時間 7,418 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 106 ms
41,204 KB
testcase_04 AC 107 ms
41,212 KB
testcase_05 AC 94 ms
39,884 KB
testcase_06 AC 109 ms
41,028 KB
testcase_07 AC 108 ms
41,160 KB
testcase_08 AC 109 ms
41,008 KB
testcase_09 AC 111 ms
41,160 KB
testcase_10 AC 115 ms
41,432 KB
testcase_11 WA -
testcase_12 AC 99 ms
40,292 KB
testcase_13 AC 94 ms
39,748 KB
testcase_14 AC 107 ms
41,188 KB
testcase_15 AC 93 ms
39,700 KB
testcase_16 AC 94 ms
39,804 KB
testcase_17 AC 100 ms
39,932 KB
testcase_18 AC 109 ms
41,044 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 108 ms
41,204 KB
testcase_22 AC 106 ms
40,980 KB
testcase_23 AC 97 ms
40,252 KB
testcase_24 AC 96 ms
40,052 KB
testcase_25 AC 108 ms
41,084 KB
testcase_26 AC 98 ms
40,412 KB
testcase_27 AC 108 ms
40,964 KB
testcase_28 AC 110 ms
41,116 KB
testcase_29 AC 99 ms
40,400 KB
testcase_30 AC 108 ms
41,108 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 112 ms
41,340 KB
testcase_34 AC 98 ms
40,368 KB
testcase_35 WA -
testcase_36 AC 109 ms
41,128 KB
testcase_37 AC 94 ms
40,076 KB
testcase_38 AC 104 ms
41,520 KB
testcase_39 AC 97 ms
40,292 KB
testcase_40 AC 106 ms
40,988 KB
testcase_41 AC 107 ms
40,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		int toy[]=new int[n];
		for(int i=0;i<n;i++){
			toy[i]=sc.nextInt();
		}
		int m=sc.nextInt();
		int box[]=new int[m];
		for(int i=0;i<m;i++){
			box[i]=sc.nextInt();
		}
		Arrays.sort(toy);
		Arrays.sort(box);
		int nokori=n;
		int ans=0;
		boolean t[]=new boolean[n];
		for(int i=m-1;i>=0;i--){
			int x=box[i];
			boolean used=false;
			for(int j=n-1;j>=0;j--){
				if(!t[j] && x>=toy[j]){
					t[j]=true;
					x-=toy[j];
	                used=true;
					nokori--;
					if(nokori==0)break;
				}
			}
			if(used)ans++;
			if(nokori==0)break;
		}
		if(nokori>0)System.out.println(-1);
		else System.out.println(ans);
	}}
0