結果

問題 No.123 カードシャッフル
ユーザー tentententen
提出日時 2020-10-09 13:17:22
言語 Java
(openjdk 23)
結果
AC  
実行時間 526 ms / 5,000 ms
コード長 498 bytes
コンパイル時間 2,842 ms
コンパイル使用メモリ 75,232 KB
実行使用メモリ 48,208 KB
最終ジャッジ日時 2024-07-20 06:46:14
合計ジャッジ時間 5,727 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,332 KB
testcase_01 AC 100 ms
40,104 KB
testcase_02 AC 112 ms
41,412 KB
testcase_03 AC 98 ms
40,112 KB
testcase_04 AC 111 ms
41,436 KB
testcase_05 AC 110 ms
41,288 KB
testcase_06 AC 99 ms
40,192 KB
testcase_07 AC 108 ms
41,084 KB
testcase_08 AC 111 ms
41,188 KB
testcase_09 AC 109 ms
40,928 KB
testcase_10 AC 526 ms
47,828 KB
testcase_11 AC 500 ms
47,904 KB
testcase_12 AC 460 ms
47,952 KB
testcase_13 AC 493 ms
48,208 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 m = sc.nextInt();
        ArrayList<Integer> cards = new ArrayList<>();
        for (int i = 1; i <= n; i++) {
            cards.add(i);
        }
        for (int i = 0; i < m; i++) {
            int x = sc.nextInt() - 1;
            cards.add(0, cards.remove(x));
        }
        System.out.println(cards.get(0));
    }
}
0