結果
問題 | No.318 学学学学学 |
ユーザー | jp_ste |
提出日時 | 2016-01-30 10:28:57 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,115 bytes |
コンパイル時間 | 5,282 ms |
コンパイル使用メモリ | 79,920 KB |
実行使用メモリ | 88,484 KB |
最終ジャッジ日時 | 2024-09-21 19:05:32 |
合計ジャッジ時間 | 35,006 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 436 ms
59,508 KB |
testcase_01 | AC | 594 ms
62,284 KB |
testcase_02 | WA | - |
testcase_03 | AC | 548 ms
62,084 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 1,354 ms
86,212 KB |
testcase_18 | WA | - |
testcase_19 | AC | 1,420 ms
86,568 KB |
testcase_20 | WA | - |
testcase_21 | AC | 134 ms
54,156 KB |
testcase_22 | AC | 150 ms
54,236 KB |
testcase_23 | AC | 153 ms
54,100 KB |
testcase_24 | AC | 152 ms
54,320 KB |
testcase_25 | AC | 150 ms
54,080 KB |
testcase_26 | AC | 150 ms
54,224 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
ソースコード
import java.util.ArrayList; import java.util.HashMap; import java.util.HashSet; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int N = scan.nextInt(); int list[] = new int[N]; HashMap<Integer, ArrayList<Integer>> pathMap = new HashMap<>(); HashSet<Integer> checkList = new HashSet<>(); for(int i=0; i<N; i++) { int a = scan.nextInt(); list[i] = a; ArrayList<Integer> array = pathMap.get(a); if( array == null) { array = new ArrayList<>(); array.add(i); pathMap.put(a, array); } else { array.add(i); pathMap.put(a, array); checkList.add(i); } } scan.close(); for(int t : checkList) { ArrayList<Integer> array = pathMap.get(t); if(array == null) continue; if(array.size() >= 2) { int from = array.get(0); int to = array.get(array.size()-1); for(int i=from; i<=to; i++) { list[i] = t; } } } for(int i=0; i<N; i++) { if(i==0) { System.out.print(list[i]); } else { System.out.print(" " + list[i]); } } } }