結果
問題 | No.482 あなたの名は |
ユーザー | shinwisteria |
提出日時 | 2017-03-20 17:53:59 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 602 bytes |
コンパイル時間 | 3,687 ms |
コンパイル使用メモリ | 76,056 KB |
実行使用メモリ | 69,644 KB |
最終ジャッジ日時 | 2024-07-05 03:24:54 |
合計ジャッジ時間 | 9,765 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 127 ms
46,816 KB |
testcase_01 | AC | 110 ms
41,208 KB |
testcase_02 | AC | 126 ms
41,232 KB |
testcase_03 | AC | 131 ms
41,108 KB |
testcase_04 | AC | 125 ms
41,120 KB |
testcase_05 | AC | 131 ms
41,680 KB |
testcase_06 | AC | 128 ms
41,076 KB |
testcase_07 | AC | 198 ms
42,752 KB |
testcase_08 | AC | 186 ms
41,940 KB |
testcase_09 | AC | 142 ms
41,520 KB |
testcase_10 | AC | 158 ms
41,836 KB |
testcase_11 | AC | 197 ms
42,496 KB |
testcase_12 | AC | 188 ms
43,056 KB |
testcase_13 | AC | 187 ms
41,808 KB |
testcase_14 | AC | 167 ms
42,104 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.ArrayList; import java.util.Scanner; public class YourName { public static void main(String[] args) { Scanner s = new Scanner(System.in); int N = s.nextInt(); long K = s.nextLong(); ArrayList<Integer> list = new ArrayList<>(); for(int i = 0;i<N;i++){ list.add(s.nextInt()); } s.close(); for(int i = 1;i <= N;i++){ if(i != list.get(i-1)){ int t = list.indexOf(i); list.set(t, list.get(i-1)); list.set(i-1, i); K--; } } if(K > 0&&K%2 == 0){ K = 0; } if(K == 0) System.out.println("YES"); else System.out.println("NO"); } }