結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー simansiman
提出日時 2021-03-18 05:52:53
言語 Ruby
(3.3.0)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 33,280 KB
最終ジャッジ日時 2024-11-15 23:38:11
合計ジャッジ時間 9,199 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,160 KB
testcase_01 AC 92 ms
12,160 KB
testcase_02 AC 87 ms
12,160 KB
testcase_03 AC 85 ms
12,160 KB
testcase_04 AC 88 ms
12,032 KB
testcase_05 AC 86 ms
12,160 KB
testcase_06 AC 83 ms
12,032 KB
testcase_07 AC 86 ms
12,160 KB
testcase_08 AC 83 ms
12,032 KB
testcase_09 AC 85 ms
12,032 KB
testcase_10 AC 84 ms
12,032 KB
testcase_11 AC 83 ms
12,160 KB
testcase_12 AC 86 ms
12,160 KB
testcase_13 AC 85 ms
12,288 KB
testcase_14 AC 87 ms
12,288 KB
testcase_15 AC 84 ms
12,160 KB
testcase_16 AC 85 ms
12,032 KB
testcase_17 AC 83 ms
12,032 KB
testcase_18 AC 86 ms
12,160 KB
testcase_19 AC 86 ms
12,160 KB
testcase_20 AC 86 ms
12,032 KB
testcase_21 AC 84 ms
12,288 KB
testcase_22 AC 202 ms
29,952 KB
testcase_23 AC 115 ms
16,000 KB
testcase_24 AC 108 ms
15,488 KB
testcase_25 AC 199 ms
30,720 KB
testcase_26 AC 239 ms
33,024 KB
testcase_27 AC 222 ms
31,744 KB
testcase_28 AC 245 ms
33,024 KB
testcase_29 AC 136 ms
18,944 KB
testcase_30 AC 120 ms
16,000 KB
testcase_31 AC 246 ms
33,152 KB
testcase_32 AC 131 ms
16,640 KB
testcase_33 AC 93 ms
12,544 KB
testcase_34 AC 139 ms
19,072 KB
testcase_35 AC 238 ms
32,640 KB
testcase_36 AC 221 ms
25,600 KB
testcase_37 AC 111 ms
14,976 KB
testcase_38 AC 276 ms
33,152 KB
testcase_39 AC 90 ms
12,416 KB
testcase_40 AC 240 ms
30,336 KB
testcase_41 AC 143 ms
19,072 KB
testcase_42 AC 165 ms
19,456 KB
testcase_43 AC 97 ms
12,672 KB
testcase_44 AC 112 ms
14,720 KB
testcase_45 AC 284 ms
33,024 KB
testcase_46 AC 280 ms
33,280 KB
testcase_47 AC 290 ms
33,280 KB
testcase_48 AC 283 ms
33,280 KB
testcase_49 AC 285 ms
33,280 KB
testcase_50 AC 89 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

m = (i == N - 1) ? A.max : A[i + 1..-1].max

if cnt == 1 && C.max <= m
  puts 1
else
  puts 2
end
0