結果

問題 No.123 カードシャッフル
ユーザー dogwood0424dogwood0424
提出日時 2018-01-04 20:35:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 500 ms / 5,000 ms
コード長 500 bytes
コンパイル時間 3,269 ms
コンパイル使用メモリ 74,100 KB
実行使用メモリ 48,780 KB
最終ジャッジ日時 2024-06-02 08:36:01
合計ジャッジ時間 7,021 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,216 KB
testcase_01 AC 101 ms
39,820 KB
testcase_02 AC 98 ms
39,932 KB
testcase_03 AC 111 ms
41,396 KB
testcase_04 AC 106 ms
41,236 KB
testcase_05 AC 98 ms
40,052 KB
testcase_06 AC 113 ms
41,032 KB
testcase_07 AC 100 ms
40,136 KB
testcase_08 AC 106 ms
40,840 KB
testcase_09 AC 111 ms
41,244 KB
testcase_10 AC 395 ms
46,864 KB
testcase_11 AC 500 ms
48,356 KB
testcase_12 AC 488 ms
48,648 KB
testcase_13 AC 457 ms
48,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class No123 {
	public static void main(String[]args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		int []a=new int[m];
		for(int i=0;i<m;i++) {
			a[i]=sc.nextInt();
		}
		int []b=new int[n];
		for(int i=0;i<n;i++) {
			b[i]=i+1;
		}
		int []t=new int[1];

		for(int i=0;i<m;i++) {
			t[0]=b[a[i]-1];
			for(int j=a[i]-1;j>0;j--) {
				b[j]=b[j-1];
			}
			b[0]=t[0];
		}

		System.out.println(b[0]);
		sc.close();
	}

}
0