結果

問題 No.1053 ゲーミング棒
ユーザー simansiman
提出日時 2021-01-25 22:59:48
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,763 ms / 2,000 ms
コード長 331 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 27,136 KB
最終ジャッジ日時 2024-06-22 23:06:04
合計ジャッジ時間 10,067 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
12,288 KB
testcase_01 AC 87 ms
12,160 KB
testcase_02 AC 90 ms
12,160 KB
testcase_03 AC 88 ms
12,288 KB
testcase_04 AC 88 ms
12,160 KB
testcase_05 AC 88 ms
12,288 KB
testcase_06 AC 88 ms
12,288 KB
testcase_07 AC 87 ms
12,288 KB
testcase_08 AC 89 ms
12,160 KB
testcase_09 AC 87 ms
12,160 KB
testcase_10 AC 86 ms
12,160 KB
testcase_11 AC 87 ms
12,160 KB
testcase_12 AC 87 ms
12,160 KB
testcase_13 AC 85 ms
12,288 KB
testcase_14 AC 86 ms
12,160 KB
testcase_15 AC 85 ms
12,160 KB
testcase_16 AC 84 ms
12,288 KB
testcase_17 AC 84 ms
12,416 KB
testcase_18 AC 86 ms
12,288 KB
testcase_19 AC 85 ms
12,160 KB
testcase_20 AC 84 ms
12,160 KB
testcase_21 AC 86 ms
12,160 KB
testcase_22 AC 85 ms
12,288 KB
testcase_23 AC 149 ms
26,880 KB
testcase_24 AC 152 ms
26,880 KB
testcase_25 AC 155 ms
27,136 KB
testcase_26 AC 154 ms
27,008 KB
testcase_27 AC 87 ms
12,416 KB
testcase_28 AC 89 ms
12,160 KB
testcase_29 AC 85 ms
12,160 KB
testcase_30 AC 124 ms
19,840 KB
testcase_31 AC 1,079 ms
20,736 KB
testcase_32 AC 1,763 ms
20,608 KB
testcase_33 AC 786 ms
20,864 KB
testcase_34 AC 1,038 ms
20,608 KB
testcase_35 AC 557 ms
20,736 KB
testcase_36 AC 561 ms
20,736 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:29: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

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

if N == 1 || A.uniq.size == 1
  puts 0
  exit
end

rotate_cnt = 0

while A[0] == A[-1]
  rotate_cnt += 1
  A.rotate!
end

cnt = 0

(N - 1).times do |i|
  cnt += 1 if A[i] != A[i + 1]
end

if cnt == A.uniq.size - 1
  if rotate_cnt == 0
    puts 0
  else
    puts 1
  end
else
  puts -1
end
0