結果

問題 No.110 しましまピラミッド
ユーザー YamaKasaYamaKasa
提出日時 2018-07-07 22:44:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 1,499 bytes
コンパイル時間 2,200 ms
コンパイル使用メモリ 77,936 KB
実行使用メモリ 54,376 KB
最終ジャッジ日時 2024-06-10 03:21:36
合計ジャッジ時間 6,506 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
54,048 KB
testcase_01 AC 118 ms
54,136 KB
testcase_02 AC 115 ms
54,320 KB
testcase_03 AC 118 ms
54,140 KB
testcase_04 AC 114 ms
53,916 KB
testcase_05 AC 114 ms
54,148 KB
testcase_06 AC 114 ms
54,176 KB
testcase_07 AC 124 ms
54,144 KB
testcase_08 AC 119 ms
54,172 KB
testcase_09 AC 114 ms
54,160 KB
testcase_10 AC 105 ms
53,096 KB
testcase_11 AC 114 ms
54,376 KB
testcase_12 AC 117 ms
54,292 KB
testcase_13 AC 103 ms
53,160 KB
testcase_14 AC 109 ms
54,012 KB
testcase_15 AC 115 ms
54,264 KB
testcase_16 AC 121 ms
54,232 KB
testcase_17 AC 118 ms
54,020 KB
testcase_18 AC 117 ms
54,320 KB
testcase_19 AC 117 ms
54,144 KB
testcase_20 AC 111 ms
54,164 KB
testcase_21 AC 105 ms
52,932 KB
testcase_22 AC 101 ms
53,116 KB
testcase_23 AC 106 ms
53,328 KB
testcase_24 AC 117 ms
54,040 KB
testcase_25 AC 116 ms
54,196 KB
testcase_26 AC 122 ms
53,944 KB
testcase_27 AC 123 ms
54,232 KB
testcase_28 AC 103 ms
52,908 KB
testcase_29 AC 116 ms
54,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int Nw = scan.nextInt();
		int []W = new int[Nw];
		for(int i = 0; i < Nw; i++) {
			W[i] = scan.nextInt();
		}
		int Nb = scan.nextInt();
		int []B = new int[Nb];
		for(int i = 0; i < Nb; i++) {
			B[i] = scan.nextInt();
		}
		scan.close();
		Arrays.sort(W);
		Arrays.sort(B);

		// 白が一番下の場合
		int n = Math.max(Nw, Nb);
		int max1 = 1;
		int h = W[Nw - 1];
		int flag = 0;
		for(int i = 2 * n; i >= 0; i--) {
			switch(flag) {
			case 0:
				for(int j = Nb - 1; j >= 0; j--) {
					if(h > B[j]) {
						max1++;
						h = B[j];
						flag = 1;
						break;
					}
				}
				break;
			case 1:
				for(int j = Nw - 2; j >= 0; j--) {
					if(h > W[j]) {
						max1 ++;
						flag = 0;
						h = W[j];
						break;
					}
				}
				break;
			}
		}
		// 黒が一番下の場合
				int max2 = 1;
				int h2 = B[Nb - 1];
				int flag2 = 0;
				for(int i = 2 * n; i >= 0; i--) {
					switch(flag2) {
					case 0:
						for(int j = Nw - 1; j >= 0; j--) {
							if(h2 > W[j]) {
								max2++;
								h2 = W[j];
								flag2 = 1;
								break;
							}
						}
						break;
					case 1:
						for(int j = Nb - 2; j >= 0; j--) {
							if(h2 > B[j]) {
								max2 ++;
								flag2 = 0;
								h2 = B[j];
								break;
							}
						}
						break;
					}
				}
		int ans = Math.max(max1, max2);
		System.out.println(ans);

	}
}
0