結果
問題 | No.1707 Simple Range Reverse Problem |
ユーザー | bluemegane |
提出日時 | 2021-10-16 09:13:20 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,395 bytes |
コンパイル時間 | 836 ms |
コンパイル使用メモリ | 109,300 KB |
実行使用メモリ | 27,036 KB |
最終ジャッジ日時 | 2024-09-17 19:18:07 |
合計ジャッジ時間 | 1,922 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 21 ms
23,796 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 21 ms
24,100 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 27 ms
24,572 KB |
testcase_11 | AC | 25 ms
22,576 KB |
testcase_12 | AC | 25 ms
24,624 KB |
testcase_13 | WA | - |
testcase_14 | AC | 26 ms
24,560 KB |
testcase_15 | AC | 26 ms
24,492 KB |
testcase_16 | AC | 26 ms
24,428 KB |
testcase_17 | AC | 26 ms
26,856 KB |
testcase_18 | AC | 26 ms
26,384 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; public class Hello { static void Main() { var t = int.Parse(Console.ReadLine().Trim()); while (t-- > 0) { var n = int.Parse(Console.ReadLine().Trim()); string[] line = ("0 " + Console.ReadLine().Trim()).Split(' '); var a = Array.ConvertAll(line, int.Parse); getAns(n, a); } } static int[] change(int n, int t) { var a = new int[2 * n + 1]; var b = new int[2 * n + 1]; for (int i = 1; i <= n; i++) { a[i] = i; a[i + n] = i; b[i] = i; b[i + n] = i; } var p = t + n - 1; var imax = p; for (int i = t + 1; i <= imax; i++) a[i] = b[p--]; return a; } static bool check(int n, int[] a, int t) { var ok = true; for (int i = 1; i <= n; i++) if (a[i] != a[i + n]) { ok = false; break; } if (ok) return true; var b = change(n, t); for (int i = 1; i <= 2 * n; i++) { if (a[i] != b[i]) return false; } return true; } static void getAns(int n, int[] a) { var k = 0; for (int i = 1; i <= n; i++) if (a[i] == a[i + n]) { k = i; break; } if (k <= 0) { Console.WriteLine("No"); return; } Console.WriteLine(check(n, a, k) ? "Yes" : "No"); } }