結果

問題 No.200 カードファイト!
ユーザー ぴろずぴろず
提出日時 2015-04-29 00:46:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,204 bytes
コンパイル時間 3,208 ms
コンパイル使用メモリ 79,684 KB
実行使用メモリ 41,496 KB
最終ジャッジ日時 2024-07-05 15:45:10
合計ジャッジ時間 6,901 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 114 ms
40,212 KB
testcase_04 AC 117 ms
40,668 KB
testcase_05 AC 130 ms
41,236 KB
testcase_06 AC 131 ms
41,092 KB
testcase_07 AC 134 ms
41,152 KB
testcase_08 AC 121 ms
40,552 KB
testcase_09 WA -
testcase_10 AC 127 ms
41,192 KB
testcase_11 AC 131 ms
41,436 KB
testcase_12 AC 129 ms
41,236 KB
testcase_13 AC 127 ms
41,232 KB
testcase_14 AC 128 ms
41,236 KB
testcase_15 AC 129 ms
41,180 KB
testcase_16 AC 126 ms
41,252 KB
testcase_17 AC 117 ms
40,092 KB
testcase_18 AC 130 ms
41,448 KB
testcase_19 AC 132 ms
41,052 KB
testcase_20 AC 115 ms
40,128 KB
testcase_21 AC 118 ms
39,912 KB
testcase_22 AC 128 ms
41,108 KB
testcase_23 AC 132 ms
41,400 KB
testcase_24 WA -
testcase_25 AC 124 ms
41,300 KB
testcase_26 AC 127 ms
41,040 KB
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

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);
			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);
	}
	static class Int {
		int i,n;
		public Int(int i,int n) {

		}
	}
}
0