結果
問題 | No.110 しましまピラミッド |
ユーザー | kenji_shioya |
提出日時 | 2016-06-25 21:24:15 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 954 bytes |
コンパイル時間 | 3,612 ms |
コンパイル使用メモリ | 77,576 KB |
実行使用メモリ | 41,596 KB |
最終ジャッジ日時 | 2024-10-11 23:22:30 |
合計ジャッジ時間 | 8,902 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
41,440 KB |
testcase_01 | AC | 133 ms
41,288 KB |
testcase_02 | AC | 131 ms
41,204 KB |
testcase_03 | AC | 133 ms
41,220 KB |
testcase_04 | AC | 118 ms
40,248 KB |
testcase_05 | AC | 135 ms
41,136 KB |
testcase_06 | AC | 131 ms
40,992 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 130 ms
41,308 KB |
testcase_14 | WA | - |
testcase_15 | AC | 131 ms
41,224 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 129 ms
41,012 KB |
testcase_19 | WA | - |
testcase_20 | AC | 131 ms
41,084 KB |
testcase_21 | AC | 132 ms
40,968 KB |
testcase_22 | WA | - |
testcase_23 | AC | 117 ms
39,964 KB |
testcase_24 | AC | 130 ms
41,488 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 133 ms
41,320 KB |
testcase_28 | AC | 132 ms
41,244 KB |
testcase_29 | WA | - |
ソースコード
import java.util.*; public class Exercise127{ public static void main (String[] args){ Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] w = new int[n]; for(int i = 0; i < n; i++){ w[i] = sc.nextInt(); } Arrays.sort(w); n = sc.nextInt(); int[] b = new int[n]; for(int i = 0; i < n; i++){ b[i] = sc.nextInt(); } Arrays.sort(b); System.out.println(Math.max(build(w, b), build(b, w))); } private static int build(int[] first, int[] second){ int top = first[first.length - 1]; int count = 1; boolean f = true; for(int i = second.length - 1; i >= 0; i--){ if(second[i] < top && f){ top = second[i]; count++; f = false; for(int j = first.length - 1; j >=0; j--){ if(first[j] < top){ top = first[j]; count++; f = true; } } } } return count; } }