結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー simansiman
提出日時 2021-03-18 05:51:24
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 345 bytes
コンパイル時間 66 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 33,280 KB
最終ジャッジ日時 2024-11-15 23:37:12
合計ジャッジ時間 9,208 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,288 KB
testcase_01 AC 90 ms
12,160 KB
testcase_02 AC 87 ms
12,032 KB
testcase_03 AC 87 ms
12,032 KB
testcase_04 RE -
testcase_05 AC 87 ms
12,288 KB
testcase_06 AC 87 ms
12,032 KB
testcase_07 AC 86 ms
12,032 KB
testcase_08 AC 89 ms
12,160 KB
testcase_09 AC 92 ms
12,032 KB
testcase_10 RE -
testcase_11 AC 87 ms
11,904 KB
testcase_12 AC 89 ms
12,032 KB
testcase_13 RE -
testcase_14 AC 90 ms
12,032 KB
testcase_15 AC 87 ms
11,904 KB
testcase_16 AC 86 ms
12,160 KB
testcase_17 AC 89 ms
12,032 KB
testcase_18 AC 89 ms
11,904 KB
testcase_19 RE -
testcase_20 AC 89 ms
12,032 KB
testcase_21 AC 89 ms
12,032 KB
testcase_22 AC 202 ms
30,080 KB
testcase_23 AC 114 ms
15,744 KB
testcase_24 AC 110 ms
15,488 KB
testcase_25 AC 206 ms
30,848 KB
testcase_26 AC 224 ms
32,896 KB
testcase_27 AC 218 ms
31,488 KB
testcase_28 AC 242 ms
33,024 KB
testcase_29 AC 139 ms
18,816 KB
testcase_30 AC 123 ms
16,256 KB
testcase_31 AC 248 ms
33,024 KB
testcase_32 AC 129 ms
16,512 KB
testcase_33 AC 90 ms
12,288 KB
testcase_34 AC 137 ms
18,944 KB
testcase_35 AC 241 ms
32,384 KB
testcase_36 AC 227 ms
25,472 KB
testcase_37 AC 109 ms
14,848 KB
testcase_38 AC 271 ms
33,280 KB
testcase_39 AC 89 ms
12,288 KB
testcase_40 AC 240 ms
30,336 KB
testcase_41 AC 149 ms
18,816 KB
testcase_42 AC 160 ms
19,200 KB
testcase_43 AC 94 ms
12,672 KB
testcase_44 AC 104 ms
14,592 KB
testcase_45 AC 296 ms
33,024 KB
testcase_46 AC 274 ms
33,024 KB
testcase_47 AC 274 ms
33,280 KB
testcase_48 AC 274 ms
33,280 KB
testcase_49 AC 275 ms
33,152 KB
testcase_50 AC 85 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i)
B = A.sort

if A.each_cons(2).count { |a, b| a > b } == 0
  puts 0
  exit
end

i = N - 1
while A[i] == B[i] && i >= 0
  i -= 1
end

C = A[0..i]
D = C.size
cnt = 0

D.times do |j|
  a = C[j]
  b = C[(j + 1) % D]
  cnt += 1 if a > b
end

if cnt == 1 && C.max <= A[i + 1..-1].max
  puts 1
else
  puts 2
end
0