結果

問題 No.930 数列圧縮
ユーザー tentententen
提出日時 2020-10-22 08:17:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 604 ms / 2,000 ms
コード長 1,064 bytes
コンパイル時間 2,818 ms
コンパイル使用メモリ 85,744 KB
実行使用メモリ 51,408 KB
最終ジャッジ日時 2024-07-21 09:13:38
合計ジャッジ時間 13,330 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
40,916 KB
testcase_01 AC 123 ms
41,136 KB
testcase_02 AC 127 ms
41,244 KB
testcase_03 AC 130 ms
41,284 KB
testcase_04 AC 162 ms
41,800 KB
testcase_05 AC 175 ms
42,680 KB
testcase_06 AC 162 ms
42,188 KB
testcase_07 AC 187 ms
44,528 KB
testcase_08 AC 427 ms
48,992 KB
testcase_09 AC 518 ms
50,648 KB
testcase_10 AC 476 ms
49,408 KB
testcase_11 AC 560 ms
50,664 KB
testcase_12 AC 570 ms
50,096 KB
testcase_13 AC 415 ms
47,948 KB
testcase_14 AC 471 ms
48,168 KB
testcase_15 AC 491 ms
50,280 KB
testcase_16 AC 513 ms
51,408 KB
testcase_17 AC 604 ms
51,092 KB
testcase_18 AC 500 ms
51,084 KB
testcase_19 AC 517 ms
50,516 KB
testcase_20 AC 574 ms
50,856 KB
testcase_21 AC 560 ms
51,216 KB
testcase_22 AC 108 ms
41,036 KB
testcase_23 AC 492 ms
50,332 KB
testcase_24 AC 114 ms
40,868 KB
testcase_25 AC 116 ms
40,988 KB
testcase_26 AC 107 ms
40,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] arr = new int[n];
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
        }
        if (arr[0] > arr[n - 1]) {
            System.out.println("No");
            return;
        }
        ArrayList<Integer> list = new ArrayList<>();
        for (int i = 1; i < n - 1; i++) {
            if (arr[i] > arr[0]) {
                list.add(arr[i]);
                arr[i] = Integer.MAX_VALUE;
            }
        }
        for (int i = n - 2; i > 0; i--) {
            if (arr[i] < arr[n - 1]) {
                list.add(arr[i]);
            }
        }
        list.add(arr[0]);
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < list.size(); i++) {
            if (i > 0) {
                sb.append(" ");
            }
            sb.append(list.get(i));
        }
        System.out.println("Yes");
        System.out.println(sb);
    }
} 
0