結果

問題 No.123 カードシャッフル
ユーザー r.suzukir.suzuki
提出日時 2016-01-03 22:28:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 621 ms / 5,000 ms
コード長 651 bytes
コンパイル時間 4,252 ms
コンパイル使用メモリ 74,188 KB
実行使用メモリ 48,656 KB
最終ジャッジ日時 2024-09-19 10:57:51
合計ジャッジ時間 7,949 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,148 KB
testcase_01 AC 142 ms
41,364 KB
testcase_02 AC 138 ms
41,412 KB
testcase_03 AC 138 ms
41,148 KB
testcase_04 AC 140 ms
41,112 KB
testcase_05 AC 141 ms
41,568 KB
testcase_06 AC 138 ms
41,668 KB
testcase_07 AC 135 ms
41,148 KB
testcase_08 AC 136 ms
41,652 KB
testcase_09 AC 137 ms
41,232 KB
testcase_10 AC 546 ms
48,360 KB
testcase_11 AC 529 ms
48,656 KB
testcase_12 AC 621 ms
48,336 KB
testcase_13 AC 562 ms
48,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

public class No_123 {

	public static void main(String[] args) {
		java.util.Scanner sc = new java.util.Scanner(System.in);
		int n = sc.nextInt();
		int card[] = new int[n];

		for (int i = 1; i <= n; i++) {
			card[i - 1] = i;
		}

		int m = sc.nextInt();
		int[] shuffle = new int[m];
		for (int i = 0; i < m; i++) {
			shuffle[i] = sc.nextInt();
		}

		for (int s : shuffle) {
			int tmp = card[s - 1];// 抜くカードを確保
			for (int i = s - 1; i > 0; i--) {
				card[i] = card[i - 1];// 後ろにコピーしてゆく
			}
			card[0] = tmp;// 抜いたカードを一番上に積む
		}
		System.out.println(card[0]);
		sc.close();

	}

}
0