結果
問題 | No.123 カードシャッフル |
ユーザー | mitsuo |
提出日時 | 2016-05-05 00:02:44 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 796 bytes |
コンパイル時間 | 2,215 ms |
コンパイル使用メモリ | 77,916 KB |
実行使用メモリ | 56,952 KB |
最終ジャッジ日時 | 2024-10-05 07:09:32 |
合計ジャッジ時間 | 5,070 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
ソースコード
package jp.fedom.challange.yuki.q123; import java.util.ArrayList; import java.util.List; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String[] input = new String[1]; int i = 0; while (sc.hasNext()) { input[i] = sc.nextLine(); i++; } System.out.println(solve(input)); sc.close(); } public static int solve(String[] in) { int N = Integer.valueOf(in[0].split(" ")[0]); int M = Integer.valueOf(in[0].split(" ")[1]); List<Integer> stack = new ArrayList<>(); for (int i = 1; i < N + 1; i++) { stack.add(i); } for (String s : in[1].split(" ")) { int p = Integer.valueOf(s) - 1; int i = stack.get(p); stack.remove(p); stack.add(0, i); } return stack.get(0); } }