結果

問題 No.123 カードシャッフル
ユーザー discoNekodiscoNeko
提出日時 2016-04-28 22:28:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 203 ms / 5,000 ms
コード長 794 bytes
コンパイル時間 2,235 ms
コンパイル使用メモリ 76,652 KB
実行使用メモリ 50,000 KB
最終ジャッジ日時 2024-10-04 17:22:38
合計ジャッジ時間 3,911 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
36,480 KB
testcase_01 AC 46 ms
36,984 KB
testcase_02 AC 44 ms
36,676 KB
testcase_03 AC 44 ms
36,912 KB
testcase_04 AC 44 ms
36,704 KB
testcase_05 AC 44 ms
36,828 KB
testcase_06 AC 45 ms
36,708 KB
testcase_07 AC 44 ms
36,848 KB
testcase_08 AC 44 ms
36,536 KB
testcase_09 AC 44 ms
36,576 KB
testcase_10 AC 144 ms
46,532 KB
testcase_11 AC 203 ms
49,772 KB
testcase_12 AC 172 ms
49,796 KB
testcase_13 AC 173 ms
50,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
import java.math.*;
 
public class Main {
	public static void main(String[] args)throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		StringBuilder sb = new StringBuilder();
		String[] str = br.readLine().split(" ");
		int n = Integer.parseInt(str[0]);
		int m = Integer.parseInt(str[1]);
		String[] str1 = br.readLine().split(" ");
		int[] deck = new int [n];
		for(int i = 0; i < n; i++)
			deck[i] = i+1;
		for(int i = 0; i < m; i++){
			int a = Integer.parseInt(str1[i]) -1;
			int tmp = deck[a];
			for(int j = a; j > 0; j--){
				deck[j] = deck[j-1];
			}
			deck[0] = tmp;
		}
		sb.append(deck[0]);
		System.out.println(sb);
	}
}
0