結果

問題 No.123 カードシャッフル
ユーザー 練習生練習生
提出日時 2015-08-22 11:43:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 525 bytes
コンパイル時間 2,885 ms
コンパイル使用メモリ 75,520 KB
実行使用メモリ 59,216 KB
最終ジャッジ日時 2024-07-18 12:38:34
合計ジャッジ時間 6,410 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
54,000 KB
testcase_01 AC 98 ms
52,700 KB
testcase_02 AC 108 ms
53,396 KB
testcase_03 AC 110 ms
53,512 KB
testcase_04 AC 103 ms
52,552 KB
testcase_05 AC 98 ms
52,856 KB
testcase_06 WA -
testcase_07 AC 98 ms
52,500 KB
testcase_08 AC 110 ms
53,764 KB
testcase_09 AC 109 ms
53,636 KB
testcase_10 AC 487 ms
59,188 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

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 - 1);
		}
		sc.close();
		System.out.println(cardList.get(0));
	}
}
0