結果

問題 No.123 カードシャッフル
ユーザー k_kadorak_kadora
提出日時 2015-06-11 02:12:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 586 ms / 5,000 ms
コード長 461 bytes
コンパイル時間 3,302 ms
コンパイル使用メモリ 74,220 KB
実行使用メモリ 59,964 KB
最終ジャッジ日時 2024-07-06 15:31:12
合計ジャッジ時間 7,281 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,988 KB
testcase_01 AC 123 ms
53,872 KB
testcase_02 AC 126 ms
54,088 KB
testcase_03 AC 122 ms
54,020 KB
testcase_04 AC 123 ms
54,216 KB
testcase_05 AC 122 ms
54,112 KB
testcase_06 AC 122 ms
54,168 KB
testcase_07 AC 109 ms
52,936 KB
testcase_08 AC 124 ms
53,876 KB
testcase_09 AC 109 ms
52,936 KB
testcase_10 AC 492 ms
59,348 KB
testcase_11 AC 546 ms
59,500 KB
testcase_12 AC 569 ms
59,668 KB
testcase_13 AC 586 ms
59,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Card{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int n,m,temp,top;
		n = sc.nextInt();
		m = sc.nextInt();
		int[] deck = new int[n];
		for(int i = 0;i<n;i++){
			deck[i] = i + 1;
		}
		for(int i = 0;i<m;i++){
			temp = sc.nextInt()-1;
			top = deck[temp];
			for(int j = 0;j<temp;j++){
				deck[temp-j] = deck[temp-j-1];
			}
			deck[0] = top;
		}
		System.out.println(deck[0]);
	}
}
0