結果

問題 No.110 しましまピラミッド
ユーザー kou6839kou6839
提出日時 2014-12-28 15:19:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,975 bytes
コンパイル時間 2,715 ms
コンパイル使用メモリ 78,908 KB
実行使用メモリ 55,980 KB
最終ジャッジ日時 2024-06-12 23:52:11
合計ジャッジ時間 7,430 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,860 KB
testcase_01 AC 123 ms
54,196 KB
testcase_02 AC 113 ms
53,044 KB
testcase_03 AC 119 ms
54,024 KB
testcase_04 AC 121 ms
54,060 KB
testcase_05 AC 120 ms
53,932 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 115 ms
52,788 KB
testcase_14 AC 119 ms
54,200 KB
testcase_15 AC 120 ms
54,084 KB
testcase_16 AC 110 ms
52,892 KB
testcase_17 AC 119 ms
53,732 KB
testcase_18 AC 119 ms
53,808 KB
testcase_19 AC 119 ms
53,676 KB
testcase_20 AC 119 ms
54,052 KB
testcase_21 AC 108 ms
52,748 KB
testcase_22 WA -
testcase_23 AC 106 ms
52,728 KB
testcase_24 AC 109 ms
52,828 KB
testcase_25 AC 117 ms
53,912 KB
testcase_26 AC 118 ms
54,044 KB
testcase_27 AC 120 ms
53,892 KB
testcase_28 AC 118 ms
53,772 KB
testcase_29 AC 105 ms
52,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main {
	public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        PriorityQueue<Integer> siro = new PriorityQueue<>();
        PriorityQueue<Integer> kuro = new PriorityQueue<>();
        int nw = sc.nextInt();
        for(int i=0;i<nw;i++){
        	int aaaa=sc.nextInt();
        	siro.offer(-aaaa);
        }
        PriorityQueue<Integer> siro1 = new PriorityQueue<>(siro);
        int nb=sc.nextInt();
        for (int i = 0; i <nb; i++) {
        	int aaaa=sc.nextInt();
        	kuro.offer(-aaaa);
		}

        PriorityQueue<Integer> kuro1 = new PriorityQueue<>(kuro);
        int ans=1;
        int count1=1;
    	int now=-1*siro.poll();
        while(!kuro.isEmpty() || !siro.isEmpty()){
        	int bb=0;
        	while(!kuro.isEmpty()){
        		bb=-1*kuro.poll();
        		if(bb<now) break;
        	}
	        if(now>bb){ 
	        	now=bb;
	        	count1++;
	        }else{
	        	break;
	        }
	        int aa=0;
	        if(siro.isEmpty())break;
	        while(!siro.isEmpty()){
	        	aa=-1*siro.poll();
	        	if(now>aa)break;
	        }
	        if(now>aa){
	        	now=aa;
	        	count1++;
	        }else{
	        	break;
	        }
	     }
        ans=count1;
        int count2=1;
        int now1=-1*kuro1.poll();
        while(!kuro1.isEmpty() || !siro1.isEmpty()){
        	int bb=0;
        	while(!siro1.isEmpty()){
        		bb=-1*siro1.poll();
        		if(bb<now1) break;
        	}
	        if(now1>bb){ 
	        	now1=bb;
	        	count2++;
	        }else{
	        	break;
	        }
	        int aa=0;
	        if(kuro1.isEmpty()) break;
	        while(!kuro1.isEmpty()){
	        	aa=-1*kuro1.poll();
	        	if(aa<now1) break;
	        }
	        if(now1>aa){
	        	now1=aa;
	        	count2++;
	        }else{
	        	break;
	        }
	     }
        	ans=Math.max(ans, count2);
        	System.out.println(ans);
    }
}
0