結果

問題 No.123 カードシャッフル
ユーザー FVRChanFVRChan
提出日時 2017-09-24 16:05:43
言語 Java
(openjdk 23)
結果
AC  
実行時間 608 ms / 5,000 ms
コード長 541 bytes
コンパイル時間 2,110 ms
コンパイル使用メモリ 75,016 KB
実行使用メモリ 59,852 KB
最終ジャッジ日時 2024-11-14 07:10:20
合計ジャッジ時間 6,497 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,428 KB
testcase_01 AC 134 ms
54,164 KB
testcase_02 AC 132 ms
54,076 KB
testcase_03 AC 130 ms
54,356 KB
testcase_04 AC 131 ms
54,072 KB
testcase_05 AC 131 ms
54,116 KB
testcase_06 AC 132 ms
54,088 KB
testcase_07 AC 132 ms
53,996 KB
testcase_08 AC 134 ms
54,256 KB
testcase_09 AC 134 ms
54,084 KB
testcase_10 AC 510 ms
59,592 KB
testcase_11 AC 604 ms
59,796 KB
testcase_12 AC 602 ms
59,596 KB
testcase_13 AC 608 ms
59,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.LinkedList;
import java.util.Scanner;
public class Main{
	public static void main(String args[])throws Exception{
		Scanner sc=new Scanner(System.in);
		int n,m,are[];
		String ss[]=sc.nextLine().split(" ");
		n=Integer.parseInt(ss[0]);
		m=Integer.parseInt(ss[1]);
		LinkedList<Integer>queue=new LinkedList<Integer>();
		for(int i=1;i<=n;i++){
			queue.offerLast(i);
		}
		for(int i=0;i<m;i++){
			int temp=sc.nextInt()-1;
			queue.offerFirst(queue.remove(temp));
		}sc.close();
		System.out.println(queue.getFirst());
	}
}
0