結果
問題 | No.2254 Reverse Only |
ユーザー | shobonvip |
提出日時 | 2023-03-10 01:56:18 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 606 bytes |
コンパイル時間 | 371 ms |
コンパイル使用メモリ | 82,500 KB |
実行使用メモリ | 122,044 KB |
最終ジャッジ日時 | 2024-09-18 03:11:11 |
合計ジャッジ時間 | 7,942 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
57,216 KB |
testcase_01 | AC | 37 ms
51,712 KB |
testcase_02 | AC | 37 ms
51,456 KB |
testcase_03 | AC | 38 ms
51,456 KB |
testcase_04 | AC | 37 ms
51,968 KB |
testcase_05 | AC | 38 ms
51,456 KB |
testcase_06 | AC | 37 ms
51,456 KB |
testcase_07 | AC | 39 ms
51,712 KB |
testcase_08 | AC | 202 ms
114,440 KB |
testcase_09 | AC | 203 ms
115,728 KB |
testcase_10 | AC | 120 ms
108,460 KB |
testcase_11 | AC | 194 ms
114,444 KB |
testcase_12 | AC | 189 ms
115,212 KB |
testcase_13 | AC | 121 ms
108,044 KB |
testcase_14 | AC | 194 ms
114,956 KB |
testcase_15 | AC | 201 ms
115,600 KB |
testcase_16 | AC | 199 ms
113,648 KB |
testcase_17 | AC | 203 ms
116,044 KB |
testcase_18 | AC | 193 ms
115,544 KB |
testcase_19 | AC | 176 ms
114,728 KB |
testcase_20 | AC | 185 ms
115,632 KB |
testcase_21 | AC | 186 ms
115,996 KB |
testcase_22 | TLE | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
ソースコード
n,k = map(int,input().split()) a = list(map(int,input().split())) b = list(map(int,input().split())) if a == b: print("Yes") exit() if sorted(a) != sorted(b): print("No") exit() if k > n: print("No") elif k <= n - 2: print("Yes") elif k == n: if a[::-1] == b: print("Yes") else: print("No") else: for i in range(n): mode = 1 for j in range(n): if a[(j+i)%n] != b[j]: mode = 0 break if mode: print("Yes") exit() for i in range(n): mode = 1 for j in range(n): if a[(j-i)%n] != b[j]: mode = 0 break if mode: print("Yes") exit() print("No")