結果

問題 No.123 カードシャッフル
ユーザー spacenautspacenaut
提出日時 2016-05-22 15:33:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 533 ms / 5,000 ms
コード長 419 bytes
コンパイル時間 1,886 ms
コンパイル使用メモリ 74,712 KB
実行使用メモリ 48,004 KB
最終ジャッジ日時 2024-10-06 20:31:47
合計ジャッジ時間 5,642 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,896 KB
testcase_01 AC 116 ms
41,032 KB
testcase_02 AC 114 ms
39,884 KB
testcase_03 AC 103 ms
39,500 KB
testcase_04 AC 100 ms
40,092 KB
testcase_05 AC 101 ms
40,140 KB
testcase_06 AC 104 ms
39,696 KB
testcase_07 AC 113 ms
40,836 KB
testcase_08 AC 112 ms
41,160 KB
testcase_09 AC 102 ms
39,652 KB
testcase_10 AC 507 ms
47,776 KB
testcase_11 AC 495 ms
47,916 KB
testcase_12 AC 533 ms
47,736 KB
testcase_13 AC 452 ms
48,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class No0123{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		int a = 0;
		ArrayList<Integer> ar = new ArrayList<Integer>();

		for(int i = 0; i < n; i++){
			ar.add(i + 1);
		}
		for(int i = 0; i < m; i++){
			a = sc.nextInt();
			ar.add(0, ar.get(a - 1));
			ar.remove(a);
		}
		System.out.println(ar.get(0));
	}
}
0