結果

問題 No.406 鴨等間隔の法則
ユーザー kazukikazuki
提出日時 2018-12-05 23:57:08
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 147 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 19,456 KB
最終ジャッジ日時 2024-07-22 10:07:32
合計ジャッジ時間 5,482 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
14,976 KB
testcase_01 AC 92 ms
12,032 KB
testcase_02 AC 93 ms
12,288 KB
testcase_03 WA -
testcase_04 AC 147 ms
18,560 KB
testcase_05 AC 115 ms
14,208 KB
testcase_06 AC 114 ms
14,208 KB
testcase_07 AC 115 ms
14,336 KB
testcase_08 AC 147 ms
18,432 KB
testcase_09 AC 153 ms
19,200 KB
testcase_10 AC 119 ms
15,104 KB
testcase_11 AC 142 ms
17,920 KB
testcase_12 AC 123 ms
15,744 KB
testcase_13 AC 120 ms
15,488 KB
testcase_14 AC 153 ms
18,176 KB
testcase_15 WA -
testcase_16 AC 98 ms
12,160 KB
testcase_17 AC 96 ms
12,288 KB
testcase_18 AC 97 ms
12,288 KB
testcase_19 AC 101 ms
12,416 KB
testcase_20 AC 104 ms
12,672 KB
testcase_21 AC 101 ms
12,544 KB
testcase_22 AC 109 ms
13,568 KB
testcase_23 AC 124 ms
16,000 KB
testcase_24 AC 147 ms
17,664 KB
testcase_25 AC 153 ms
19,328 KB
testcase_26 AC 162 ms
19,200 KB
testcase_27 WA -
testcase_28 AC 141 ms
19,456 KB
testcase_29 AC 163 ms
19,456 KB
testcase_30 AC 162 ms
19,072 KB
testcase_31 AC 149 ms
19,072 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i

x = gets.split.map(&:to_i).sort!

(n-2).times do |i|
  if x[i+1]-x[i] != x[i+2]-x[i+1]
    puts 'NO'
    exit
  end
end

puts 'YES'
0