結果

問題 No.110 しましまピラミッド
ユーザー tentententen
提出日時 2020-12-28 15:31:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 1,706 bytes
コンパイル時間 2,673 ms
コンパイル使用メモリ 77,896 KB
実行使用メモリ 54,320 KB
最終ジャッジ日時 2024-10-03 05:41:19
合計ジャッジ時間 7,019 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,128 KB
testcase_01 AC 128 ms
54,012 KB
testcase_02 AC 128 ms
54,180 KB
testcase_03 AC 129 ms
54,320 KB
testcase_04 AC 129 ms
54,004 KB
testcase_05 AC 113 ms
52,984 KB
testcase_06 AC 126 ms
53,824 KB
testcase_07 AC 110 ms
52,904 KB
testcase_08 AC 124 ms
53,868 KB
testcase_09 AC 124 ms
54,204 KB
testcase_10 AC 127 ms
54,188 KB
testcase_11 AC 123 ms
54,028 KB
testcase_12 AC 128 ms
54,120 KB
testcase_13 AC 123 ms
54,136 KB
testcase_14 AC 112 ms
53,076 KB
testcase_15 AC 124 ms
54,004 KB
testcase_16 AC 121 ms
54,120 KB
testcase_17 AC 127 ms
54,112 KB
testcase_18 AC 126 ms
53,900 KB
testcase_19 AC 128 ms
54,080 KB
testcase_20 AC 128 ms
54,100 KB
testcase_21 AC 131 ms
54,204 KB
testcase_22 AC 134 ms
53,976 KB
testcase_23 AC 132 ms
54,172 KB
testcase_24 AC 129 ms
54,232 KB
testcase_25 AC 125 ms
54,116 KB
testcase_26 AC 126 ms
54,032 KB
testcase_27 AC 129 ms
54,164 KB
testcase_28 AC 127 ms
54,096 KB
testcase_29 AC 128 ms
54,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int wn = sc.nextInt();
        int[] wArr = new int[wn];
        for (int i = 0; i < wn; i++) {
            wArr[i] = sc.nextInt();
        }
        Arrays.sort(wArr);
        int bn = sc.nextInt();
        int[] bArr = new int[bn];
        for (int i = 0; i < bn; i++) {
            bArr[i] = sc.nextInt();
        }
        Arrays.sort(bArr);
        int wIdx = wn - 1;
        int bIdx = bn - 1;
        int wCount = 0;
        int wPrev = Integer.MAX_VALUE;
        while (true) {
            while (wIdx >= 0 && wPrev <= wArr[wIdx]) {
                wIdx--;
            }
            if (wIdx < 0) {
                break;
            }
            wCount++;
            wPrev = wArr[wIdx]; 
            while (bIdx >= 0 && wPrev <= bArr[bIdx]) {
                bIdx--;
            }
            if (bIdx < 0) {
                break;
            }
            wCount++;
            wPrev = bArr[bIdx]; 
        }
        wIdx = wn - 1;
        bIdx = bn - 1;
        int bCount = 0;
        int bPrev = Integer.MAX_VALUE;
        while (true) {
            while (bIdx >= 0 && bPrev <= bArr[bIdx]) {
                bIdx--;
            }
            if (bIdx < 0) {
                break;
            }
            bCount++;
            bPrev = bArr[bIdx];
            while (wIdx >= 0 && bPrev <= wArr[wIdx]) {
                wIdx--;
            }
            if (wIdx < 0) {
                break;
            }
            bCount++;
            bPrev = wArr[wIdx];
        }
        System.out.println(Math.max(wCount, bCount));
    }
}
0