結果

問題 No.110 しましまピラミッド
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-06-07 16:32:50
言語 Java
(openjdk 23)
結果
AC  
実行時間 155 ms / 5,000 ms
コード長 1,338 bytes
コンパイル時間 4,290 ms
コンパイル使用メモリ 78,736 KB
実行使用メモリ 54,452 KB
最終ジャッジ日時 2024-12-31 11:10:37
合計ジャッジ時間 10,161 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
54,356 KB
testcase_01 AC 155 ms
54,016 KB
testcase_02 AC 139 ms
54,160 KB
testcase_03 AC 140 ms
53,996 KB
testcase_04 AC 139 ms
54,192 KB
testcase_05 AC 142 ms
54,228 KB
testcase_06 AC 142 ms
54,304 KB
testcase_07 AC 141 ms
54,208 KB
testcase_08 AC 145 ms
54,112 KB
testcase_09 AC 142 ms
54,212 KB
testcase_10 AC 146 ms
54,300 KB
testcase_11 AC 149 ms
54,008 KB
testcase_12 AC 142 ms
54,248 KB
testcase_13 AC 143 ms
54,308 KB
testcase_14 AC 141 ms
54,140 KB
testcase_15 AC 146 ms
54,288 KB
testcase_16 AC 146 ms
54,140 KB
testcase_17 AC 148 ms
54,296 KB
testcase_18 AC 142 ms
54,268 KB
testcase_19 AC 143 ms
54,068 KB
testcase_20 AC 139 ms
54,324 KB
testcase_21 AC 145 ms
54,128 KB
testcase_22 AC 139 ms
54,128 KB
testcase_23 AC 142 ms
54,132 KB
testcase_24 AC 142 ms
54,452 KB
testcase_25 AC 141 ms
54,080 KB
testcase_26 AC 143 ms
54,204 KB
testcase_27 AC 144 ms
54,232 KB
testcase_28 AC 143 ms
54,252 KB
testcase_29 AC 152 ms
54,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No0110 {
    
    static final Scanner in = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        int nw = in.nextInt();
        wb = new int[2][];
        wb[0] = new int[nw];
        for (int i=0; i<nw; i++) wb[0][i] = in.nextInt();
        int nb = in.nextInt();
    	wb[1] = new int[nb];
    	for (int i=0; i<nb; i++) wb[1][i] = in.nextInt();
    	sort(wb[0]); sort(wb[1]);

    	//trace(wb);
    	out.println(count(0) > count(1) ? count(0) : count(1));
    }
   	
   	static int[][] wb;

    static int count(int f) {
    	int[] ptr = new int[2];
    	int res = 0, max = 0;
    	while (true) {
    		while (ptr[f%2] < wb[f%2].length && wb[f%2][ptr[f%2]] <= max) ptr[f%2]++;
    		if (ptr[f%2] == wb[f%2].length) return res;
    		res++;
    		max = wb[f%2][ptr[f%2]];
    		f++;
    	}
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        in.close();
        out.close();
    }

    static void trace(Object... o) { System.out.println(Arrays.deepToString(o));}
}
0