結果

問題 No.50 おもちゃ箱
ユーザー リチウムリチウム
提出日時 2014-10-27 00:01:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 793 bytes
コンパイル時間 1,902 ms
コンパイル使用メモリ 78,060 KB
実行使用メモリ 54,456 KB
最終ジャッジ日時 2024-06-09 17:43:24
合計ジャッジ時間 7,958 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 119 ms
54,028 KB
testcase_04 AC 116 ms
54,128 KB
testcase_05 AC 117 ms
54,280 KB
testcase_06 AC 104 ms
52,980 KB
testcase_07 AC 113 ms
53,772 KB
testcase_08 AC 124 ms
54,300 KB
testcase_09 AC 123 ms
54,004 KB
testcase_10 AC 120 ms
54,200 KB
testcase_11 WA -
testcase_12 AC 117 ms
53,916 KB
testcase_13 AC 120 ms
54,180 KB
testcase_14 AC 123 ms
54,184 KB
testcase_15 AC 125 ms
53,908 KB
testcase_16 AC 111 ms
53,168 KB
testcase_17 AC 125 ms
54,448 KB
testcase_18 AC 124 ms
54,148 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 108 ms
52,880 KB
testcase_22 AC 119 ms
54,012 KB
testcase_23 AC 105 ms
53,208 KB
testcase_24 AC 124 ms
54,196 KB
testcase_25 AC 114 ms
54,140 KB
testcase_26 AC 116 ms
54,324 KB
testcase_27 AC 118 ms
54,288 KB
testcase_28 AC 121 ms
54,148 KB
testcase_29 AC 115 ms
54,028 KB
testcase_30 AC 117 ms
54,252 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 106 ms
53,264 KB
testcase_34 AC 109 ms
53,136 KB
testcase_35 WA -
testcase_36 AC 118 ms
54,224 KB
testcase_37 AC 117 ms
54,176 KB
testcase_38 AC 117 ms
54,164 KB
testcase_39 AC 106 ms
53,004 KB
testcase_40 AC 117 ms
54,048 KB
testcase_41 AC 117 ms
54,248 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;
				}
			}
			if(used)ans++;
		}
		for(int i=0;i<n;i++){
			if(!t[i]){
				System.out.println(-1);
				return;
			}
		}
	    System.out.println(ans);
	}}
0