結果

問題 No.123 カードシャッフル
ユーザー Mcpu3Mcpu3
提出日時 2018-06-21 23:16:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 587 ms / 5,000 ms
コード長 381 bytes
コンパイル時間 1,961 ms
コンパイル使用メモリ 74,888 KB
実行使用メモリ 59,596 KB
最終ジャッジ日時 2024-06-30 17:45:40
合計ジャッジ時間 6,421 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,196 KB
testcase_01 AC 131 ms
54,128 KB
testcase_02 AC 129 ms
54,304 KB
testcase_03 AC 132 ms
54,076 KB
testcase_04 AC 132 ms
53,832 KB
testcase_05 AC 130 ms
54,316 KB
testcase_06 AC 129 ms
54,020 KB
testcase_07 AC 131 ms
53,984 KB
testcase_08 AC 130 ms
53,976 KB
testcase_09 AC 130 ms
54,352 KB
testcase_10 AC 562 ms
59,020 KB
testcase_11 AC 572 ms
59,496 KB
testcase_12 AC 541 ms
59,596 KB
testcase_13 AC 587 ms
59,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no123{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int n,m,a,c[]=new int[50],i,j,t;
		n=stdIn.nextInt();
		m=stdIn.nextInt();
		for(i=0;i<n;i++) c[i]=i+1;
		for(i=0;i<m;i++) {
			a=stdIn.nextInt();
			t=c[a-1];
			for(j=a-1;j>0;j--) c[j]=c[j-1];
			c[0]=t;
		}
		System.out.print(c[0]);
	}
}
0