結果
問題 | No.110 しましまピラミッド |
ユーザー | YamaKasa |
提出日時 | 2018-07-07 22:34:24 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,474 bytes |
コンパイル時間 | 2,060 ms |
コンパイル使用メモリ | 77,968 KB |
実行使用メモリ | 54,360 KB |
最終ジャッジ日時 | 2024-07-05 17:23:31 |
合計ジャッジ時間 | 5,980 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 108 ms
41,052 KB |
testcase_01 | AC | 105 ms
40,948 KB |
testcase_02 | AC | 106 ms
40,932 KB |
testcase_03 | AC | 105 ms
41,320 KB |
testcase_04 | AC | 97 ms
40,156 KB |
testcase_05 | AC | 97 ms
40,136 KB |
testcase_06 | AC | 108 ms
41,068 KB |
testcase_07 | AC | 96 ms
40,500 KB |
testcase_08 | AC | 107 ms
41,316 KB |
testcase_09 | AC | 107 ms
41,472 KB |
testcase_10 | AC | 107 ms
41,684 KB |
testcase_11 | AC | 110 ms
41,468 KB |
testcase_12 | AC | 106 ms
41,076 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 92 ms
39,392 KB |
testcase_18 | AC | 106 ms
40,928 KB |
testcase_19 | AC | 108 ms
40,916 KB |
testcase_20 | AC | 107 ms
41,124 KB |
testcase_21 | AC | 110 ms
41,408 KB |
testcase_22 | AC | 106 ms
41,428 KB |
testcase_23 | AC | 109 ms
41,440 KB |
testcase_24 | AC | 99 ms
40,696 KB |
testcase_25 | AC | 107 ms
40,844 KB |
testcase_26 | AC | 106 ms
41,048 KB |
testcase_27 | AC | 114 ms
41,212 KB |
testcase_28 | AC | 107 ms
41,048 KB |
testcase_29 | WA | - |
ソースコード
import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int Nw = scan.nextInt(); int []W = new int[Nw]; for(int i = 0; i < Nw; i++) { W[i] = scan.nextInt(); } int Nb = scan.nextInt(); int []B = new int[Nb]; for(int i = 0; i < Nb; i++) { B[i] = scan.nextInt(); } scan.close(); Arrays.sort(W); Arrays.sort(B); // 白が一番下の場合 int max1 = 1; int h = W[Nw - 1]; int flag = 0; for(int i = Nw - 1; i >= 0; i--) { switch(flag) { case 0: for(int j = Nb - 1; j >= 0; j--) { if(h > B[j]) { max1++; h = B[j]; flag = 1; break; } } break; case 1: for(int j = Nw - 2; j >= 0; j--) { if(h > W[j]) { max1 ++; flag = 0; h = W[j]; break; } } break; } } // 黒が一番下の場合 int max2 = 1; int h2 = B[Nb - 1]; int flag2 = 0; for(int i = Nb - 1; i >= 0; i--) { switch(flag2) { case 0: for(int j = Nw - 1; j >= 0; j--) { if(h2 > W[j]) { max2++; h2 = W[j]; flag2 = 1; break; } } break; case 1: for(int j = Nb - 2; j >= 0; j--) { if(h2 > B[j]) { max2 ++; flag2 = 0; h2 = B[j]; break; } } break; } } int ans = Math.max(max1, max2); System.out.println(ans); } }