結果

問題 No.123 カードシャッフル
ユーザー koukonkokoukonko
提出日時 2015-12-12 14:29:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 582 ms / 5,000 ms
コード長 553 bytes
コンパイル時間 2,194 ms
コンパイル使用メモリ 74,188 KB
実行使用メモリ 48,380 KB
最終ジャッジ日時 2024-09-15 08:43:40
合計ジャッジ時間 6,665 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
40,232 KB
testcase_01 AC 131 ms
41,000 KB
testcase_02 AC 129 ms
41,132 KB
testcase_03 AC 131 ms
41,400 KB
testcase_04 AC 130 ms
41,384 KB
testcase_05 AC 130 ms
41,044 KB
testcase_06 AC 130 ms
41,604 KB
testcase_07 AC 129 ms
41,380 KB
testcase_08 AC 129 ms
41,360 KB
testcase_09 AC 131 ms
41,196 KB
testcase_10 AC 481 ms
46,516 KB
testcase_11 AC 498 ms
47,960 KB
testcase_12 AC 582 ms
48,380 KB
testcase_13 AC 560 ms
48,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {

		try {
			Scanner scan = new Scanner(System.in);
			int N = scan.nextInt();
			int[] card = new int[N];
			int M = scan.nextInt();
			for(int i = 0; i < N; ++i){
				card[i] = i+1;
			}

			while(M-- > 0){
				int num = scan.nextInt()-1;
				int sw = card[num];
				for(int i = num; i > 0; --i){
					card[i] = card[i-1];
				}
				card[0] = sw;
			}

			System.out.println(card[0]);

			scan.close();
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}
0