結果
問題 | No.482 あなたの名は |
ユーザー | shinwisteria |
提出日時 | 2017-03-24 16:11:49 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 713 bytes |
コンパイル時間 | 3,640 ms |
コンパイル使用メモリ | 76,440 KB |
実行使用メモリ | 83,100 KB |
最終ジャッジ日時 | 2024-07-06 01:57:07 |
合計ジャッジ時間 | 10,973 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
47,028 KB |
testcase_01 | AC | 130 ms
41,332 KB |
testcase_02 | AC | 129 ms
41,124 KB |
testcase_03 | AC | 129 ms
41,024 KB |
testcase_04 | AC | 123 ms
40,900 KB |
testcase_05 | AC | 130 ms
41,184 KB |
testcase_06 | AC | 129 ms
41,284 KB |
testcase_07 | AC | 207 ms
42,864 KB |
testcase_08 | AC | 198 ms
42,228 KB |
testcase_09 | AC | 145 ms
41,652 KB |
testcase_10 | AC | 174 ms
41,996 KB |
testcase_11 | AC | 200 ms
42,480 KB |
testcase_12 | AC | 203 ms
42,564 KB |
testcase_13 | AC | 191 ms
41,876 KB |
testcase_14 | AC | 185 ms
41,940 KB |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
import java.util.ArrayDeque; import java.util.ArrayList; import java.util.Queue; import java.util.Scanner; public class YourName2 { public static void main(String[] args) { Scanner s = new Scanner(System.in); int N = s.nextInt(); long K = s.nextLong(); ArrayList<Integer> D = new ArrayList<>(); for(int i = 0;i<N;i++){ D.add(s.nextInt()); } s.close(); Queue<Integer> C = new ArrayDeque<>(); C.addAll(D); while(C.size() > 0){ int i = C.poll(); int k = D.indexOf(i); while(k != i-1){ int A = D.get(i-1); i = A; K--; C.remove(i); } } if(K > 0&&K%2 == 0){ K = 0; } if(K == 0) System.out.println("YES"); else System.out.println("NO"); } }