結果

問題 No.123 カードシャッフル
ユーザー dazydazy
提出日時 2016-09-13 17:40:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 625 ms / 5,000 ms
コード長 542 bytes
コンパイル時間 3,920 ms
コンパイル使用メモリ 84,516 KB
実行使用メモリ 59,224 KB
最終ジャッジ日時 2024-11-17 04:55:20
合計ジャッジ時間 8,836 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
54,144 KB
testcase_01 AC 143 ms
53,920 KB
testcase_02 AC 142 ms
53,612 KB
testcase_03 AC 139 ms
53,676 KB
testcase_04 AC 142 ms
54,048 KB
testcase_05 AC 144 ms
53,824 KB
testcase_06 AC 140 ms
54,152 KB
testcase_07 AC 141 ms
54,140 KB
testcase_08 AC 144 ms
53,880 KB
testcase_09 AC 146 ms
53,768 KB
testcase_10 AC 619 ms
59,224 KB
testcase_11 AC 598 ms
59,104 KB
testcase_12 AC 611 ms
58,820 KB
testcase_13 AC 625 ms
59,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        int N = scan.nextInt();
        ArrayList<Integer> C = new ArrayList<>();
        for (int i = 0; i < N; i++) C.add(i+1);
        int M = scan.nextInt();
        int A;
        for (int i = 0; i < M; i++) {
            A = scan.nextInt();
            if (A!=1) {
                C.add(0, C.get(A - 1));
                C.remove(A);
            }
        }
        System.out.println(C.get(0));
    }
}
0