結果

問題 No.110 しましまピラミッド
ユーザー リチウムリチウム
提出日時 2014-12-23 23:44:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 1,069 bytes
コンパイル時間 4,224 ms
コンパイル使用メモリ 84,336 KB
実行使用メモリ 54,944 KB
最終ジャッジ日時 2024-06-10 03:00:37
合計ジャッジ時間 8,210 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,944 KB
testcase_01 AC 129 ms
54,260 KB
testcase_02 AC 126 ms
54,180 KB
testcase_03 AC 113 ms
53,248 KB
testcase_04 AC 130 ms
54,144 KB
testcase_05 AC 131 ms
54,036 KB
testcase_06 AC 127 ms
54,128 KB
testcase_07 AC 116 ms
52,988 KB
testcase_08 AC 130 ms
54,116 KB
testcase_09 AC 129 ms
53,752 KB
testcase_10 AC 131 ms
54,392 KB
testcase_11 AC 130 ms
54,288 KB
testcase_12 AC 128 ms
54,468 KB
testcase_13 AC 129 ms
54,176 KB
testcase_14 AC 118 ms
53,116 KB
testcase_15 AC 130 ms
54,088 KB
testcase_16 AC 129 ms
54,180 KB
testcase_17 AC 130 ms
54,364 KB
testcase_18 AC 130 ms
54,348 KB
testcase_19 AC 130 ms
54,656 KB
testcase_20 AC 126 ms
54,444 KB
testcase_21 AC 127 ms
54,164 KB
testcase_22 AC 128 ms
54,204 KB
testcase_23 AC 130 ms
54,348 KB
testcase_24 AC 129 ms
54,444 KB
testcase_25 AC 132 ms
54,040 KB
testcase_26 AC 129 ms
54,312 KB
testcase_27 AC 132 ms
54,176 KB
testcase_28 AC 129 ms
54,372 KB
testcase_29 AC 128 ms
54,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class LightSwitchingPuzzle {
	
	
	 public static void main(String[] args) {
		 Scanner sc=new Scanner(System.in);
		 int nw=sc.nextInt();
		 int w[]=new int[nw];
		 
		 for(int i=0;i<nw;i++){
			 w[i]=sc.nextInt();
		 }
		 
		 int nb=sc.nextInt();
		 int b[]=new int[nb];
		 for(int i=0;i<nb;i++){
			 b[i]=sc.nextInt();
		 }
		 
		 Arrays.sort(w);
		 Arrays.sort(b);
		 int noww=nw-1;
		 int nowb=nb-1;
		 boolean B=true;
		 int ansb=1;
		 while(noww>=0 && nowb>=0){
			 if(B && b[nowb]<=w[noww])noww--;
			 else if(B && b[nowb]>w[noww]){
				 ansb++;
				 B=false;
			 }
			 if(!B && w[noww]<=b[nowb])nowb--;
			 else if(!B && w[noww]>b[nowb]){
				 ansb++;
				 B=true;
			 }
		 }
		 
		 noww=nw-1;
		 nowb=nb-1;
		  B=false;
		 int answ=1;
		 while(noww>=0 && nowb>=0){
			 if(B && b[nowb]<=w[noww])noww--;
			 else if(B && b[nowb]>w[noww]){
				 answ++;
				 B=false;
			 }
			 if(!B && w[noww]<=b[nowb])nowb--;
			 else if(!B && w[noww]>b[nowb]){
				 answ++;
				 B=true;
			 }
		 }
		 System.out.println(Math.max(ansb,answ));
	 }


}
0