結果

問題 No.110 しましまピラミッド
ユーザー tsunabittsunabit
提出日時 2020-02-24 23:45:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 1,387 bytes
コンパイル時間 3,702 ms
コンパイル使用メモリ 79,280 KB
実行使用メモリ 54,424 KB
最終ジャッジ日時 2024-10-12 18:37:53
合計ジャッジ時間 8,759 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,964 KB
testcase_01 AC 116 ms
52,952 KB
testcase_02 AC 129 ms
53,868 KB
testcase_03 AC 129 ms
53,664 KB
testcase_04 AC 130 ms
54,068 KB
testcase_05 AC 131 ms
53,728 KB
testcase_06 AC 128 ms
53,988 KB
testcase_07 AC 131 ms
53,888 KB
testcase_08 AC 128 ms
53,852 KB
testcase_09 AC 116 ms
52,948 KB
testcase_10 AC 131 ms
53,684 KB
testcase_11 AC 133 ms
53,792 KB
testcase_12 AC 117 ms
52,904 KB
testcase_13 AC 132 ms
53,956 KB
testcase_14 AC 131 ms
54,104 KB
testcase_15 AC 129 ms
53,872 KB
testcase_16 AC 130 ms
53,996 KB
testcase_17 AC 134 ms
53,772 KB
testcase_18 AC 114 ms
52,632 KB
testcase_19 AC 131 ms
54,036 KB
testcase_20 AC 117 ms
52,996 KB
testcase_21 AC 126 ms
53,848 KB
testcase_22 AC 114 ms
52,768 KB
testcase_23 AC 131 ms
53,516 KB
testcase_24 AC 132 ms
53,636 KB
testcase_25 AC 130 ms
53,924 KB
testcase_26 AC 131 ms
53,828 KB
testcase_27 AC 131 ms
54,424 KB
testcase_28 AC 134 ms
53,740 KB
testcase_29 AC 134 ms
53,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No110 {
	public static int max = 0;
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int nw = sc.nextInt();
		Integer[] w = new Integer[nw];
		for(int i = 0; i < nw; i++) {
			w[i] = sc.nextInt();
		}
		Arrays.sort(w, Collections.reverseOrder());
		
		int nb = sc.nextInt();
		Integer[] b = new Integer[nb];
		for(int i = 0; i < nb; i++) {
			b[i] = sc.nextInt();
		}
		Arrays.sort(b, Collections.reverseOrder());
		
		// w起点
		for(int i = 0; i < nw; i++) {
			wb(w, b, "b", w[i], 1);
		}
		// b起点
		for(int i = 0; i < nb; i++) {
			wb(w, b, "w", b[i], 1);
		}
		System.out.println(max);
    }
	
	public static void wb(Integer[] w, Integer[] b, String wbe, int c, int total) {
		boolean f = false;
		// 終了条件
		if(wbe.equals("e")) {
			if(max < total) max = total;
		}
		
		// w
		if(wbe.equals("w")) {
			for(int i = 0; i < w.length; i++) {
				if(w[i] < c) {
					total++;
					c = w[i];
					f = true;
					break;
				}
			}
			if(f) {
				wb(w, b, "b", c, total);
			}else {
				wb(w, b, "e", c, total);
			}
		}
		// b
		if(wbe.equals("b")) {
			for(int i = 0; i < b.length; i++) {
				if(b[i] < c) {
					total++;
					c = b[i];
					f = true;
					break;
				}
			}
			if(f) {
				wb(w, b, "w", c, total);
			}else {
				wb(w, b, "e", c, total);
			}
		}
	}
}
0