結果

問題 No.123 カードシャッフル
ユーザー 37zigen37zigen
提出日時 2016-03-11 20:11:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 621 ms / 5,000 ms
コード長 602 bytes
コンパイル時間 3,708 ms
コンパイル使用メモリ 76,828 KB
実行使用メモリ 59,584 KB
最終ジャッジ日時 2024-09-25 00:53:40
合計ジャッジ時間 7,962 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
54,220 KB
testcase_01 AC 146 ms
54,260 KB
testcase_02 AC 143 ms
53,816 KB
testcase_03 AC 144 ms
54,000 KB
testcase_04 AC 145 ms
54,016 KB
testcase_05 AC 144 ms
54,112 KB
testcase_06 AC 145 ms
54,100 KB
testcase_07 AC 131 ms
53,180 KB
testcase_08 AC 145 ms
54,252 KB
testcase_09 AC 142 ms
53,852 KB
testcase_10 AC 558 ms
59,384 KB
testcase_11 AC 543 ms
59,216 KB
testcase_12 AC 621 ms
59,552 KB
testcase_13 AC 604 ms
59,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package 練習;

import java.util.Date;
import java.util.Scanner;
public class main{
	public static void main(String[] args){
		long exec_time=new Date().getTime();
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		int m=sc.nextInt();
		int[] a=new int[m];
		for(int i=0;i<m;i++){
			a[i]=sc.nextInt()-1;
		}
		int[] now=new int[n];
		for(int i=0;i<n;i++){
			now[i]=i+1;
		}
		for(int i=0;i<m;i++){
			int tmp=now[a[i]];
			for(int j=a[i];j>=1;j--){
				now[j]=now[j-1];
			}
			now[0]=tmp;
		}
		System.out.println(now[0]);
		System.err.println(new Date().getTime()-exec_time+"ms");

	}
}
0