結果

問題 No.123 カードシャッフル
ユーザー 練習生練習生
提出日時 2015-08-22 11:47:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 504 ms / 5,000 ms
コード長 521 bytes
コンパイル時間 2,902 ms
コンパイル使用メモリ 74,784 KB
実行使用メモリ 47,824 KB
最終ジャッジ日時 2024-07-18 12:39:20
合計ジャッジ時間 6,448 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
41,088 KB
testcase_01 AC 105 ms
41,088 KB
testcase_02 AC 105 ms
40,828 KB
testcase_03 AC 96 ms
40,036 KB
testcase_04 AC 105 ms
40,916 KB
testcase_05 AC 106 ms
41,016 KB
testcase_06 AC 104 ms
40,792 KB
testcase_07 AC 105 ms
41,000 KB
testcase_08 AC 112 ms
41,000 KB
testcase_09 AC 114 ms
41,124 KB
testcase_10 AC 454 ms
47,664 KB
testcase_11 AC 406 ms
46,636 KB
testcase_12 AC 504 ms
47,768 KB
testcase_13 AC 489 ms
47,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
public class Template {
	public static void main(String[] args) {
		List<Integer> cardList = new ArrayList<Integer>();
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		for(int i = 0; i < n; i++){
			cardList.add(i + 1);
		}
		for(int i = 0; i < m; i++){
			int a = sc.nextInt();
			cardList.add(0, cardList.get(a - 1));
			cardList.remove(a);
		}
		sc.close();
		System.out.println(cardList.get(0));
	}
}
0