結果

問題 No.1053 ゲーミング棒
ユーザー maimai
提出日時 2020-05-15 21:35:24
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 276 bytes
コンパイル時間 32 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 19,456 KB
最終ジャッジ日時 2024-09-19 09:18:31
合計ジャッジ時間 4,389 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,160 KB
testcase_01 AC 79 ms
12,160 KB
testcase_02 AC 77 ms
12,160 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 77 ms
12,160 KB
testcase_06 AC 75 ms
12,160 KB
testcase_07 AC 77 ms
12,160 KB
testcase_08 AC 78 ms
12,160 KB
testcase_09 AC 74 ms
12,160 KB
testcase_10 AC 76 ms
12,032 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 79 ms
12,288 KB
testcase_14 AC 79 ms
12,160 KB
testcase_15 AC 77 ms
12,032 KB
testcase_16 AC 77 ms
12,288 KB
testcase_17 AC 77 ms
12,288 KB
testcase_18 AC 76 ms
12,288 KB
testcase_19 AC 75 ms
12,288 KB
testcase_20 AC 74 ms
12,160 KB
testcase_21 AC 75 ms
12,160 KB
testcase_22 AC 76 ms
12,032 KB
testcase_23 AC 118 ms
18,944 KB
testcase_24 AC 125 ms
19,072 KB
testcase_25 AC 127 ms
19,200 KB
testcase_26 WA -
testcase_27 AC 79 ms
12,288 KB
testcase_28 AC 78 ms
12,160 KB
testcase_29 AC 75 ms
12,288 KB
testcase_30 AC 114 ms
19,200 KB
testcase_31 AC 115 ms
19,456 KB
testcase_32 AC 116 ms
19,456 KB
testcase_33 AC 113 ms
19,200 KB
testcase_34 AC 113 ms
19,328 KB
testcase_35 AC 118 ms
18,944 KB
testcase_36 AC 115 ms
18,816 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def lscan; gets.split.map(&:to_i); end
def bye(msg); puts msg.to_s; exit; end
n = gets.to_i
a = [nil]*n
q = nil
warn = false
lscan.each do |v|
  v -= 1
  next if v == q
  q = v
  if a[v]
    bye '-1' if warn
    warn = true
  end
  a[v] = true
end
if warn
  p 1
else
  p 0
end
0