結果

問題 No.930 数列圧縮
ユーザー htensaihtensai
提出日時 2020-05-15 09:19:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 664 ms / 2,000 ms
コード長 925 bytes
コンパイル時間 2,765 ms
コンパイル使用メモリ 74,996 KB
実行使用メモリ 59,876 KB
最終ジャッジ日時 2024-09-17 15:32:02
合計ジャッジ時間 16,303 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,060 KB
testcase_01 AC 142 ms
53,976 KB
testcase_02 AC 138 ms
53,940 KB
testcase_03 AC 144 ms
54,000 KB
testcase_04 AC 176 ms
54,096 KB
testcase_05 AC 195 ms
54,540 KB
testcase_06 AC 188 ms
54,084 KB
testcase_07 AC 209 ms
56,688 KB
testcase_08 AC 555 ms
59,452 KB
testcase_09 AC 655 ms
59,876 KB
testcase_10 AC 578 ms
59,300 KB
testcase_11 AC 538 ms
59,328 KB
testcase_12 AC 628 ms
59,544 KB
testcase_13 AC 487 ms
59,264 KB
testcase_14 AC 531 ms
59,260 KB
testcase_15 AC 558 ms
59,268 KB
testcase_16 AC 557 ms
59,116 KB
testcase_17 AC 622 ms
59,452 KB
testcase_18 AC 664 ms
59,416 KB
testcase_19 AC 648 ms
59,492 KB
testcase_20 AC 645 ms
59,328 KB
testcase_21 AC 643 ms
59,440 KB
testcase_22 AC 133 ms
54,396 KB
testcase_23 AC 558 ms
59,056 KB
testcase_24 AC 133 ms
54,356 KB
testcase_25 AC 133 ms
53,984 KB
testcase_26 AC 133 ms
54,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        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();
        }
        StringBuilder sb = new StringBuilder();
        if (arr[0] < arr[n - 1]) {
            sb.append("Yes\n");
            for (int i = 1; i < n - 1; i++) {
                if (arr[0] < arr[i]) {
                    sb.append(arr[i]).append(" ");
                    arr[i] = Integer.MAX_VALUE;
                }
            }
            for (int i = n - 2; i >= 1; i--) {
                 if (arr[i] < arr[n - 1]) {
                    sb.append(arr[i]).append(" ");
                }
            }
            sb.append(arr[0]);
        } else {
            sb.append("No");
        }
        System.out.println(sb);
    }
}
0