結果

問題 No.930 数列圧縮
ユーザー 37zigen37zigen
提出日時 2019-11-22 23:29:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 830 ms / 2,000 ms
コード長 949 bytes
コンパイル時間 2,534 ms
コンパイル使用メモリ 79,924 KB
実行使用メモリ 57,740 KB
最終ジャッジ日時 2024-10-11 05:00:17
合計ジャッジ時間 17,909 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
42,664 KB
testcase_01 AC 166 ms
42,896 KB
testcase_02 AC 175 ms
42,820 KB
testcase_03 AC 178 ms
42,796 KB
testcase_04 AC 192 ms
42,952 KB
testcase_05 AC 231 ms
45,040 KB
testcase_06 AC 178 ms
42,188 KB
testcase_07 AC 265 ms
48,164 KB
testcase_08 AC 744 ms
49,300 KB
testcase_09 AC 746 ms
50,148 KB
testcase_10 AC 674 ms
48,916 KB
testcase_11 AC 660 ms
49,780 KB
testcase_12 AC 744 ms
53,380 KB
testcase_13 AC 426 ms
47,544 KB
testcase_14 AC 495 ms
48,316 KB
testcase_15 AC 747 ms
57,740 KB
testcase_16 AC 705 ms
52,964 KB
testcase_17 AC 778 ms
54,144 KB
testcase_18 AC 709 ms
53,348 KB
testcase_19 AC 821 ms
55,092 KB
testcase_20 AC 830 ms
53,560 KB
testcase_21 AC 806 ms
54,076 KB
testcase_22 AC 155 ms
42,528 KB
testcase_23 AC 706 ms
53,004 KB
testcase_24 AC 154 ms
42,368 KB
testcase_25 AC 126 ms
41,184 KB
testcase_26 AC 155 ms
42,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;
import java.io.*;

class Main
{
    public static void main(String[] args)
    {
        new Main().run();
    }
    
    void run() {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int[] a = new int[N];
        for (int i = 0; i < N; ++i) {
            a[i] = sc.nextInt();
        }
        if (a[0] > a[N - 1]) {
            System.out.println("No");
            return;
        }
        System.out.println("Yes");
        PrintWriter pw = new PrintWriter(System.out);
        int[] ans = new int[N];
        int p = 0;
        for (int i = 1; i < a[N - 1]; ++i) {
            if (i != a[0]) {
                ans[p++] = i;
            }
        }
        for (int i = N; i >= a[N - 1]; --i) {
            ans[p++] = i;
        }
        for (int i = 0; i < p; ++i) {
            pw.print(ans[i] + (i == p - 1 ? "\n" : " "));
        }
        pw.close();
    }
    
}
0