結果
問題 | No.123 カードシャッフル |
ユーザー | YamaKasa |
提出日時 | 2018-05-16 23:19:40 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 582 bytes |
コンパイル時間 | 2,141 ms |
コンパイル使用メモリ | 75,416 KB |
実行使用メモリ | 48,672 KB |
最終ジャッジ日時 | 2024-06-28 13:22:47 |
合計ジャッジ時間 | 6,209 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 114 ms
40,112 KB |
testcase_01 | AC | 115 ms
39,816 KB |
testcase_02 | AC | 119 ms
40,144 KB |
testcase_03 | WA | - |
testcase_04 | AC | 129 ms
41,168 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
ソースコード
import java.util.ArrayList; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int N = scan.nextInt(); int M = scan.nextInt(); int []A = new int[M]; ArrayList<Integer> list = new ArrayList<Integer>(); for(int i = 0; i < M; i++) { A[i] = scan.nextInt(); } scan.close(); for(int i = 0; i < N; i++) { list.add(i + 1); } for(int i = 0; i < M; i++) { int temp = list.get(A[i] - 1); list.remove(A[i] - 1); list.add(M - 1, temp); } System.out.println(list.get(0)); } }