結果

問題 No.123 カードシャッフル
ユーザー kou6839kou6839
提出日時 2015-01-15 14:25:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 627 ms / 5,000 ms
コード長 537 bytes
コンパイル時間 2,469 ms
コンパイル使用メモリ 73,852 KB
実行使用メモリ 59,316 KB
最終ジャッジ日時 2024-06-22 11:39:52
合計ジャッジ時間 7,185 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
53,852 KB
testcase_01 AC 144 ms
54,264 KB
testcase_02 AC 140 ms
54,016 KB
testcase_03 AC 139 ms
54,016 KB
testcase_04 AC 137 ms
54,256 KB
testcase_05 AC 138 ms
54,464 KB
testcase_06 AC 136 ms
53,992 KB
testcase_07 AC 140 ms
54,172 KB
testcase_08 AC 132 ms
54,096 KB
testcase_09 AC 133 ms
54,092 KB
testcase_10 AC 569 ms
59,148 KB
testcase_11 AC 586 ms
59,276 KB
testcase_12 AC 608 ms
59,236 KB
testcase_13 AC 627 ms
59,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
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();
        int[] ca = new int[n];
        for(int i=0;i<n;i++){
        	ca[i]=i+1;
        }
        for(int i=0;i<m;i++){
        	int a = sc.nextInt();
        	int temp = ca[a-1];
        	for(int j=a-1;j>=1;j--){
        		ca[j]=ca[j-1];
        	}
        	ca[0]=temp;
        }
        System.out.println(ca[0]);
    }
}		
0