結果

問題 No.123 カードシャッフル
ユーザー r.suzukir.suzuki
提出日時 2016-01-03 22:41:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 612 ms / 5,000 ms
コード長 562 bytes
コンパイル時間 3,699 ms
コンパイル使用メモリ 74,808 KB
実行使用メモリ 48,752 KB
最終ジャッジ日時 2024-09-19 10:58:16
合計ジャッジ時間 8,260 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,324 KB
testcase_01 AC 137 ms
41,256 KB
testcase_02 AC 136 ms
41,372 KB
testcase_03 AC 141 ms
41,696 KB
testcase_04 AC 138 ms
41,416 KB
testcase_05 AC 140 ms
41,660 KB
testcase_06 AC 140 ms
40,984 KB
testcase_07 AC 139 ms
41,264 KB
testcase_08 AC 145 ms
41,272 KB
testcase_09 AC 141 ms
41,568 KB
testcase_10 AC 606 ms
48,600 KB
testcase_11 AC 585 ms
48,548 KB
testcase_12 AC 612 ms
48,752 KB
testcase_13 AC 562 ms
48,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.LinkedList;
import java.util.Scanner;

public class No_123second {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		LinkedList<Integer> card = new LinkedList<Integer>();
		int n = sc.nextInt();
		int m = sc.nextInt();
		int[] shuffle = new int[m];

		for (int i = 1; i <= n; i++) {
			card.add(i);
		}

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

		for (int s : shuffle) {
			int i = card.remove(s - 1);
			card.offerFirst(i);
		}

		System.out.println(card.peek());
		sc.close();

	}

}
0