結果

問題 No.123 カードシャッフル
ユーザー jimanojimano
提出日時 2018-02-12 15:22:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 190 ms / 5,000 ms
コード長 758 bytes
コンパイル時間 3,179 ms
コンパイル使用メモリ 75,444 KB
実行使用メモリ 62,824 KB
最終ジャッジ日時 2024-11-24 12:57:00
合計ジャッジ時間 5,288 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,360 KB
testcase_01 AC 49 ms
50,252 KB
testcase_02 AC 48 ms
50,352 KB
testcase_03 AC 50 ms
50,532 KB
testcase_04 AC 50 ms
50,552 KB
testcase_05 AC 52 ms
50,708 KB
testcase_06 AC 50 ms
50,396 KB
testcase_07 AC 50 ms
50,196 KB
testcase_08 AC 49 ms
50,444 KB
testcase_09 AC 49 ms
50,372 KB
testcase_10 AC 184 ms
62,824 KB
testcase_11 AC 180 ms
60,656 KB
testcase_12 AC 185 ms
60,604 KB
testcase_13 AC 190 ms
60,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.LinkedList;

public class No0123 {
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] input1 = br.readLine().split(" ");
		int n = Integer.parseInt(input1[0]);
		int m = Integer.parseInt(input1[1]);
		LinkedList<Integer> list = new LinkedList<>();
		for (int i = 0; i < n; i++) {
			list.add(i + 1);
		}

		String[] input2 = br.readLine().split(" ");
		for (int i = 0; i < m; i++) {
			int idx = Integer.parseInt(input2[i]);
			int ret = list.remove(idx - 1);
			list.addFirst(ret);
		}

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