結果

問題 No.1707 Simple Range Reverse Problem
ユーザー maguroflymagurofly
提出日時 2021-10-15 21:34:22
言語 Ruby
(3.3.0)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 27,000 KB
最終ジャッジ日時 2024-09-17 17:16:59
合計ジャッジ時間 2,838 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
12,160 KB
testcase_01 AC 92 ms
12,160 KB
testcase_02 AC 97 ms
12,288 KB
testcase_03 AC 92 ms
12,160 KB
testcase_04 AC 94 ms
12,288 KB
testcase_05 AC 93 ms
12,416 KB
testcase_06 AC 96 ms
12,288 KB
testcase_07 AC 97 ms
12,032 KB
testcase_08 AC 94 ms
12,288 KB
testcase_09 AC 103 ms
21,376 KB
testcase_10 AC 102 ms
21,120 KB
testcase_11 AC 93 ms
13,952 KB
testcase_12 AC 104 ms
20,224 KB
testcase_13 AC 108 ms
24,040 KB
testcase_14 AC 108 ms
21,504 KB
testcase_15 AC 114 ms
26,972 KB
testcase_16 AC 113 ms
25,368 KB
testcase_17 AC 108 ms
21,504 KB
testcase_18 AC 112 ms
27,000 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

T = gets.to_s.to_i
T.times do
    n = gets.to_s.to_i
    a = gets.to_s.split.map { |s| s.to_i }
    
    x = (0 ... n * 2).map { |i| i % n + 1 }
    
    if a == x
        puts "Yes"
        next
    end
    
    if (0 ... n).any? do |i|
        y = x.dup
        y[i, n + 1] = x[i, n + 1].reverse
        a == y
    end
        puts "Yes"
        next
    end
    
    puts "No"
end
0