結果
問題 | No.110 しましまピラミッド |
ユーザー | kou6839 |
提出日時 | 2014-12-28 15:31:42 |
言語 | Java21 (openjdk 21) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,010 bytes |
コンパイル時間 | 3,205 ms |
コンパイル使用メモリ | 79,928 KB |
実行使用メモリ | 54,444 KB |
最終ジャッジ日時 | 2024-06-12 23:52:37 |
合計ジャッジ時間 | 6,801 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 123 ms
53,928 KB |
testcase_01 | AC | 117 ms
54,124 KB |
testcase_02 | AC | 113 ms
53,508 KB |
testcase_03 | AC | 120 ms
54,004 KB |
testcase_04 | AC | 122 ms
54,204 KB |
testcase_05 | AC | 103 ms
52,900 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 | 118 ms
54,444 KB |
testcase_14 | AC | 119 ms
54,088 KB |
testcase_15 | AC | 127 ms
54,144 KB |
testcase_16 | AC | 121 ms
54,100 KB |
testcase_17 | AC | 124 ms
54,064 KB |
testcase_18 | AC | 126 ms
54,156 KB |
testcase_19 | AC | 120 ms
54,132 KB |
testcase_20 | AC | 105 ms
52,800 KB |
testcase_21 | AC | 125 ms
53,908 KB |
testcase_22 | AC | 127 ms
53,952 KB |
testcase_23 | AC | 130 ms
54,008 KB |
testcase_24 | AC | 130 ms
54,044 KB |
testcase_25 | AC | 125 ms
54,020 KB |
testcase_26 | AC | 123 ms
54,040 KB |
testcase_27 | AC | 118 ms
54,084 KB |
testcase_28 | AC | 121 ms
53,892 KB |
testcase_29 | AC | 118 ms
53,112 KB |
ソースコード
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; if(siro1.isEmpty())break; 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); } }