結果

問題 No.50 おもちゃ箱
ユーザー kou6839kou6839
提出日時 2014-12-19 15:54:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 953 bytes
コンパイル時間 4,467 ms
コンパイル使用メモリ 77,532 KB
実行使用メモリ 41,912 KB
最終ジャッジ日時 2024-06-12 01:47:01
合計ジャッジ時間 10,296 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 139 ms
41,324 KB
testcase_04 WA -
testcase_05 AC 141 ms
41,804 KB
testcase_06 AC 142 ms
41,520 KB
testcase_07 AC 149 ms
41,636 KB
testcase_08 AC 144 ms
41,304 KB
testcase_09 AC 143 ms
41,408 KB
testcase_10 AC 140 ms
41,448 KB
testcase_11 AC 138 ms
41,400 KB
testcase_12 AC 136 ms
41,308 KB
testcase_13 AC 142 ms
41,124 KB
testcase_14 AC 140 ms
41,272 KB
testcase_15 AC 143 ms
41,264 KB
testcase_16 AC 143 ms
41,608 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 145 ms
41,476 KB
testcase_20 AC 146 ms
41,280 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 146 ms
41,136 KB
testcase_27 AC 141 ms
41,360 KB
testcase_28 AC 135 ms
41,264 KB
testcase_29 WA -
testcase_30 AC 139 ms
41,304 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 141 ms
41,124 KB
testcase_34 AC 140 ms
41,372 KB
testcase_35 WA -
testcase_36 AC 140 ms
41,044 KB
testcase_37 AC 140 ms
41,676 KB
testcase_38 WA -
testcase_39 AC 144 ms
41,652 KB
testcase_40 AC 140 ms
41,532 KB
testcase_41 AC 142 ms
41,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;
 
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n= sc.nextInt();
        int[] omo = new int[n];
        for(int i=0;i<n;i++){
        	omo[i]=sc.nextInt();
        }
        Arrays.sort(omo);
        int m = sc.nextInt();
        int[] hako =new int[m];
        boolean[] use = new boolean[m];
        for(int i=0;i<m;i++){
        	hako[i]=sc.nextInt();
        }
        Arrays.sort(hako);
        for(int i=n-1;i>=0;i--){
        	for(int j=m-1;j>=0;j--){
        		if(omo[i]<=hako[j]){
        			hako[j]-=omo[i];
        			use[j]=true;
        			break;
        		}else{
        			if(j==-1){
        				System.out.println(-1);
        			}
        			continue;
        		}
        	}
        }
        int ans=0;
        for(int i=0;i<m;i++){
        	if(use[i])ans++;
        }
        System.out.println(ans);
        
    }
}
0