結果

問題 No.123 カードシャッフル
ユーザー TatsuDXTatsuDX
提出日時 2016-09-08 23:51:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 580 ms / 5,000 ms
コード長 446 bytes
コンパイル時間 3,285 ms
コンパイル使用メモリ 74,728 KB
実行使用メモリ 59,404 KB
最終ジャッジ日時 2024-11-15 22:30:57
合計ジャッジ時間 7,561 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,176 KB
testcase_01 AC 127 ms
53,708 KB
testcase_02 AC 130 ms
53,868 KB
testcase_03 AC 133 ms
53,968 KB
testcase_04 AC 116 ms
52,644 KB
testcase_05 AC 115 ms
52,680 KB
testcase_06 AC 127 ms
54,004 KB
testcase_07 AC 133 ms
54,244 KB
testcase_08 AC 130 ms
53,992 KB
testcase_09 AC 127 ms
53,716 KB
testcase_10 AC 535 ms
59,188 KB
testcase_11 AC 571 ms
59,380 KB
testcase_12 AC 573 ms
59,252 KB
testcase_13 AC 580 ms
59,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

		int n = sc.nextInt(), m = sc.nextInt(), idx, tmp;
		int[] t = new int[n];
		for (int i = 0; i < n; i++) {
			t[i] = i + 1;
		}
		for (int i = 0; i < m; i++) {
			idx = sc.nextInt() - 1;
			tmp = t[idx];
			for (int j = idx; j > 0; j--) {
				t[j] = t[j - 1];
			}
			t[0] = tmp;
		}
		System.out.println(t[0]);
	}
}
0