結果

問題 No.1053 ゲーミング棒
ユーザー yuruhiyayuruhiya
提出日時 2020-05-18 13:46:56
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 220 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 26,752 KB
最終ジャッジ日時 2024-10-01 21:55:21
合計ジャッジ時間 5,980 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,160 KB
testcase_01 AC 94 ms
12,288 KB
testcase_02 AC 92 ms
12,288 KB
testcase_03 AC 93 ms
12,416 KB
testcase_04 AC 92 ms
12,416 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 93 ms
12,032 KB
testcase_12 AC 94 ms
12,288 KB
testcase_13 WA -
testcase_14 AC 91 ms
12,032 KB
testcase_15 AC 87 ms
12,032 KB
testcase_16 AC 93 ms
12,288 KB
testcase_17 AC 88 ms
12,032 KB
testcase_18 AC 92 ms
12,288 KB
testcase_19 WA -
testcase_20 AC 92 ms
12,416 KB
testcase_21 AC 88 ms
12,032 KB
testcase_22 AC 92 ms
12,032 KB
testcase_23 AC 142 ms
22,784 KB
testcase_24 AC 140 ms
22,528 KB
testcase_25 AC 156 ms
26,752 KB
testcase_26 AC 141 ms
22,528 KB
testcase_27 WA -
testcase_28 AC 92 ms
12,160 KB
testcase_29 AC 91 ms
12,288 KB
testcase_30 WA -
testcase_31 AC 140 ms
19,456 KB
testcase_32 AC 139 ms
19,712 KB
testcase_33 AC 142 ms
20,352 KB
testcase_34 AC 140 ms
19,456 KB
testcase_35 WA -
testcase_36 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:10: 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
s = a.uniq.size
if s == n
	puts 0
elsif a.first == a.last
	b = a[a.index { |i| i != a.first }..a.rindex { |i| i != a.last }]
	puts b.uniq.size == b.size ? 1 : -1
else
	puts -1
end
0