結果

問題 No.123 カードシャッフル
ユーザー marumaru
提出日時 2016-03-23 22:09:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 517 ms / 5,000 ms
コード長 594 bytes
コンパイル時間 3,603 ms
コンパイル使用メモリ 74,816 KB
実行使用メモリ 48,544 KB
最終ジャッジ日時 2024-10-01 21:39:06
合計ジャッジ時間 7,735 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,120 KB
testcase_01 AC 119 ms
41,152 KB
testcase_02 AC 117 ms
40,888 KB
testcase_03 AC 118 ms
41,192 KB
testcase_04 AC 120 ms
41,136 KB
testcase_05 AC 112 ms
40,132 KB
testcase_06 AC 118 ms
40,308 KB
testcase_07 AC 110 ms
40,136 KB
testcase_08 AC 121 ms
41,228 KB
testcase_09 AC 122 ms
40,992 KB
testcase_10 AC 517 ms
48,292 KB
testcase_11 AC 494 ms
48,324 KB
testcase_12 AC 502 ms
48,404 KB
testcase_13 AC 506 ms
48,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;

public class yukicoder_123 {
	public static void main(String[] args) {
		Scanner stdIn = new Scanner(System.in);
		
		int n = stdIn.nextInt();
		int m = stdIn.nextInt();
		
		int[] a = new int[m];
		
		for (int i = 0; i < m; i++) {
			a[i] = stdIn.nextInt();
		}
		
		ArrayList<Integer> list = new ArrayList<Integer>(50);
		
		for (int i = 1; i <= n; i++) {
			list.add(i);
		}
		
		for (int i = 0; i < m; i++) {
			Integer x = list.get(a[i] - 1);
			list.remove(a[i] - 1);
			list.add(0, x);
		}
		
		System.out.println(list.get(0));
	}
}
0