結果

問題 No.123 カードシャッフル
ユーザー taku-techtaku-tech
提出日時 2021-05-19 00:07:51
言語 Java
(openjdk 23)
結果
AC  
実行時間 585 ms / 5,000 ms
コード長 662 bytes
コンパイル時間 6,787 ms
コンパイル使用メモリ 74,980 KB
実行使用メモリ 48,752 KB
最終ジャッジ日時 2024-10-09 00:03:04
合計ジャッジ時間 7,951 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,472 KB
testcase_01 AC 132 ms
41,224 KB
testcase_02 AC 133 ms
41,028 KB
testcase_03 AC 117 ms
41,396 KB
testcase_04 AC 132 ms
41,160 KB
testcase_05 AC 132 ms
41,108 KB
testcase_06 AC 133 ms
41,400 KB
testcase_07 AC 133 ms
41,116 KB
testcase_08 AC 135 ms
40,840 KB
testcase_09 AC 134 ms
40,896 KB
testcase_10 AC 554 ms
48,752 KB
testcase_11 AC 534 ms
48,312 KB
testcase_12 AC 539 ms
48,356 KB
testcase_13 AC 585 ms
48,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package card_shuffle;

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

public class CardShuffle {

	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];
		List<Integer> cardList = new LinkedList<Integer>();

		for(int cardNum = 1; cardNum <= N; cardNum++) {
			cardList.add(cardNum);
		}

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

		List<Integer> shuffledCard = new LinkedList<>(cardList);
		for(int a: A) {
			shuffledCard.add(0, shuffledCard.remove(a-1));
		}

		System.out.println(shuffledCard.get(0));
	}

}
0