結果

問題 No.123 カードシャッフル
ユーザー yagi2yagi2
提出日時 2017-04-24 19:22:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 492 ms / 5,000 ms
コード長 665 bytes
コンパイル時間 2,195 ms
コンパイル使用メモリ 76,036 KB
実行使用メモリ 53,984 KB
最終ジャッジ日時 2024-09-13 12:06:42
合計ジャッジ時間 6,494 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
51,896 KB
testcase_01 AC 128 ms
52,012 KB
testcase_02 AC 128 ms
52,252 KB
testcase_03 AC 129 ms
52,304 KB
testcase_04 AC 129 ms
52,100 KB
testcase_05 AC 127 ms
53,984 KB
testcase_06 AC 128 ms
53,876 KB
testcase_07 AC 125 ms
41,380 KB
testcase_08 AC 125 ms
41,504 KB
testcase_09 AC 125 ms
41,056 KB
testcase_10 AC 476 ms
48,252 KB
testcase_11 AC 485 ms
47,864 KB
testcase_12 AC 492 ms
48,008 KB
testcase_13 AC 491 ms
48,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int N = Integer.parseInt(sc.next());
        int M = Integer.parseInt(sc.next());

        List<Integer> trump = new ArrayList<>();
        for (int i = 1; i <= N; i++) {
            trump.add(i);
        }

        for (int i = 0; i < M; i++) {
            int maime = Integer.parseInt(sc.next());
            int tmp = trump.get(maime-1);
            trump.remove(maime-1);
            trump.add(0, tmp);
        }

        System.out.println(trump.get(0));
    }
}
0