結果

問題 No.123 カードシャッフル
ユーザー nCk_cvnCk_cv
提出日時 2016-01-21 02:22:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 500 ms / 5,000 ms
コード長 545 bytes
コンパイル時間 1,802 ms
コンパイル使用メモリ 74,732 KB
実行使用メモリ 48,536 KB
最終ジャッジ日時 2024-09-21 14:54:13
合計ジャッジ時間 5,639 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,912 KB
testcase_01 AC 126 ms
41,560 KB
testcase_02 AC 127 ms
41,240 KB
testcase_03 AC 125 ms
41,352 KB
testcase_04 AC 117 ms
40,788 KB
testcase_05 AC 113 ms
39,912 KB
testcase_06 AC 112 ms
41,140 KB
testcase_07 AC 117 ms
40,956 KB
testcase_08 AC 116 ms
40,352 KB
testcase_09 AC 119 ms
41,108 KB
testcase_10 AC 471 ms
48,436 KB
testcase_11 AC 500 ms
48,200 KB
testcase_12 AC 484 ms
48,536 KB
testcase_13 AC 472 ms
48,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.io.*;

public class Main {
	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()-1;
		}
		int[] now = new int[N];
		for(int i = 0; i < N; i++) {
			now[i] = i+1;
		}
		for(int i = 0; i < M; i++) {
			int tmp = now[A[i]];
			for(int j = A[i]; j >= 1; j--) {
				now[j] = now[j-1];
			}
			now[0] = tmp;
		}
		System.out.println(now[0]);
	}
}
0