結果

問題 No.123 カードシャッフル
ユーザー rf141rf141
提出日時 2015-08-09 21:29:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 520 ms / 5,000 ms
コード長 612 bytes
コンパイル時間 2,953 ms
コンパイル使用メモリ 74,652 KB
実行使用メモリ 59,484 KB
最終ジャッジ日時 2024-07-18 06:17:53
合計ジャッジ時間 6,644 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,236 KB
testcase_01 AC 125 ms
54,192 KB
testcase_02 AC 120 ms
53,856 KB
testcase_03 AC 110 ms
52,960 KB
testcase_04 AC 121 ms
53,956 KB
testcase_05 AC 125 ms
53,908 KB
testcase_06 AC 121 ms
53,992 KB
testcase_07 AC 101 ms
52,800 KB
testcase_08 AC 113 ms
53,988 KB
testcase_09 AC 101 ms
52,784 KB
testcase_10 AC 492 ms
59,348 KB
testcase_11 AC 520 ms
59,424 KB
testcase_12 AC 492 ms
59,484 KB
testcase_13 AC 472 ms
59,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class card{
	public static void main(String... args){
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();
		int m = scan.nextInt();
		int[] number = new int[n];
		for(int i = 0; i < n; i++){
			number[i] = i+1;
		}
		System.out.println(cardShuffle(number,m,scan));
	}
	public static int cardShuffle(int[] number,int m,Scanner scan){
		for(int i = 0; i < m; i++){
			int shuffle_number = scan.nextInt();
			int now = number[shuffle_number-1];
			for(int j = shuffle_number-1; 0 < j; j--){
				number[j] = number[j-1];
			}
			number[0] = now;
		}
		return number[0];
	}
}
0