結果

問題 No.123 カードシャッフル
ユーザー 37zigen37zigen
提出日時 2016-03-11 20:08:48
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 602 bytes
コンパイル時間 3,686 ms
コンパイル使用メモリ 76,484 KB
実行使用メモリ 56,324 KB
最終ジャッジ日時 2024-09-25 00:53:31
合計ジャッジ時間 6,810 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
54,300 KB
testcase_01 AC 136 ms
52,980 KB
testcase_02 AC 149 ms
54,044 KB
testcase_03 AC 148 ms
54,464 KB
testcase_04 AC 149 ms
54,068 KB
testcase_05 AC 144 ms
54,284 KB
testcase_06 AC 150 ms
54,164 KB
testcase_07 AC 151 ms
54,124 KB
testcase_08 AC 155 ms
54,500 KB
testcase_09 AC 151 ms
54,228 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
権限があれば一括ダウンロードができます

ソースコード

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[n];
		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