結果

問題 No.123 カードシャッフル
ユーザー ffmm00ffmm00
提出日時 2015-06-13 21:15:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 513 ms / 5,000 ms
コード長 442 bytes
コンパイル時間 2,810 ms
コンパイル使用メモリ 74,720 KB
実行使用メモリ 59,580 KB
最終ジャッジ日時 2024-07-06 19:52:48
合計ジャッジ時間 6,412 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
52,556 KB
testcase_01 AC 101 ms
54,288 KB
testcase_02 AC 99 ms
52,572 KB
testcase_03 AC 118 ms
53,940 KB
testcase_04 AC 102 ms
53,160 KB
testcase_05 AC 114 ms
54,300 KB
testcase_06 AC 113 ms
54,192 KB
testcase_07 AC 111 ms
54,084 KB
testcase_08 AC 113 ms
54,232 KB
testcase_09 AC 106 ms
53,748 KB
testcase_10 AC 446 ms
59,216 KB
testcase_11 AC 443 ms
59,468 KB
testcase_12 AC 470 ms
59,580 KB
testcase_13 AC 513 ms
59,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N123 {

	public static void main(String[] args) {
		Scanner sca = new Scanner(System.in);

		int n = sca.nextInt();
		int m = sca.nextInt();
		int[] f = new int[n];

		for (int i = 0; i < n; i++)
			f[i] = i + 1;

		for (int i = 0; i < m; i++) {
			int a = sca.nextInt() - 1;
			int t = f[a];
			for (int k = a - 1; 0 <= k; k--)
				f[k + 1] = f[k];
			f[0] = t;
		}

		System.out.println(f[0]);

	}

}
0