結果

問題 No.200 カードファイト!
ユーザー ぴろずぴろず
提出日時 2015-04-29 00:47:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,139 bytes
コンパイル時間 1,794 ms
コンパイル使用メモリ 79,552 KB
実行使用メモリ 41,408 KB
最終ジャッジ日時 2024-07-05 15:49:37
合計ジャッジ時間 5,765 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,204 KB
testcase_01 AC 116 ms
41,408 KB
testcase_02 AC 106 ms
41,172 KB
testcase_03 AC 103 ms
40,172 KB
testcase_04 AC 106 ms
40,956 KB
testcase_05 AC 110 ms
40,880 KB
testcase_06 AC 110 ms
41,244 KB
testcase_07 AC 108 ms
41,100 KB
testcase_08 AC 106 ms
40,360 KB
testcase_09 WA -
testcase_10 AC 107 ms
40,184 KB
testcase_11 AC 109 ms
40,864 KB
testcase_12 AC 105 ms
41,128 KB
testcase_13 AC 96 ms
39,916 KB
testcase_14 AC 106 ms
41,072 KB
testcase_15 AC 96 ms
40,268 KB
testcase_16 AC 96 ms
39,900 KB
testcase_17 AC 108 ms
40,852 KB
testcase_18 AC 107 ms
40,908 KB
testcase_19 AC 108 ms
40,904 KB
testcase_20 AC 107 ms
41,144 KB
testcase_21 AC 108 ms
40,296 KB
testcase_22 AC 108 ms
41,064 KB
testcase_23 AC 111 ms
41,044 KB
testcase_24 WA -
testcase_25 AC 105 ms
41,036 KB
testcase_26 AC 111 ms
40,632 KB
testcase_27 WA -
testcase_28 AC 113 ms
40,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* 分からず */

package no200;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int a = sc.nextInt();
		int[] b = new int[a];
		for(int i=0;i<a;i++) {
			b[i] = sc.nextInt();
		}
		int c = sc.nextInt();
		int[] d = new int[c];
		for(int i=0;i<c;i++) {
			d[i] = sc.nextInt();
		}
		Arrays.sort(b);
		Arrays.sort(d);
		ArrayList<Integer> handA = new ArrayList<>();
		ArrayList<Integer> handB = new ArrayList<>();
		int ans = 0;
		for(int i=0;i<n;i++) {
			if (handA.isEmpty()) {
				for(int j=0;j<a;j++) {
					handA.add(b[j]);
				}
			}
			if (handB.isEmpty()) {
				for(int j=0;j<c;j++) {
					handB.add(d[j]);
				}
			}
			int low = handB.get(0);
			int ceilI = Collections.binarySearch(handA, low+1);
			if (ceilI < 0) {
				ceilI = ~ceilI;
			}
			if (ceilI >= handA.size()) {
				handA.remove(0);
				handB.remove(handB.size()-1);
			}else{
				handA.remove(ceilI);
				handB.remove(0);
				ans++;
			}
		}
		System.out.println(ans);
	}
}
0