結果

問題 No.123 カードシャッフル
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 06:22:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 500 ms / 5,000 ms
コード長 541 bytes
コンパイル時間 1,816 ms
コンパイル使用メモリ 74,412 KB
実行使用メモリ 49,896 KB
最終ジャッジ日時 2024-11-25 21:47:24
合計ジャッジ時間 5,725 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
41,900 KB
testcase_01 AC 108 ms
42,720 KB
testcase_02 AC 108 ms
42,556 KB
testcase_03 AC 111 ms
43,024 KB
testcase_04 AC 101 ms
43,332 KB
testcase_05 AC 103 ms
44,328 KB
testcase_06 AC 109 ms
43,936 KB
testcase_07 AC 111 ms
44,152 KB
testcase_08 AC 117 ms
44,452 KB
testcase_09 AC 108 ms
44,072 KB
testcase_10 AC 462 ms
48,996 KB
testcase_11 AC 444 ms
49,536 KB
testcase_12 AC 482 ms
49,896 KB
testcase_13 AC 500 ms
49,096 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 [] C = new int [N];
        for(int i=0; i<N; i++){
            C[i] = i+1;
        }
        int M = sc.nextInt();
        for(int j=0; j<M; j++){
            int A = sc.nextInt();
            int t = C[A-1];
            for(int k=0; k<A-1; k++){
                C[A-1-k]=C[A-2-k];
            }
            C[0]=t;
        }
        System.out.println(C[0]);
    }
}
0