結果

問題 No.406 鴨等間隔の法則
ユーザー fshutofshuto
提出日時 2019-04-18 08:33:20
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 161 bytes
コンパイル時間 65 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 20,352 KB
最終ジャッジ日時 2024-09-22 08:45:30
合計ジャッジ時間 5,751 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
15,616 KB
testcase_01 AC 91 ms
12,160 KB
testcase_02 AC 91 ms
12,416 KB
testcase_03 WA -
testcase_04 AC 143 ms
19,456 KB
testcase_05 AC 110 ms
14,720 KB
testcase_06 AC 111 ms
14,720 KB
testcase_07 AC 111 ms
14,976 KB
testcase_08 AC 144 ms
19,584 KB
testcase_09 AC 146 ms
19,968 KB
testcase_10 AC 113 ms
15,360 KB
testcase_11 AC 136 ms
18,688 KB
testcase_12 AC 118 ms
16,384 KB
testcase_13 AC 116 ms
16,128 KB
testcase_14 AC 147 ms
19,072 KB
testcase_15 WA -
testcase_16 AC 97 ms
12,544 KB
testcase_17 AC 94 ms
12,416 KB
testcase_18 AC 95 ms
12,416 KB
testcase_19 AC 98 ms
12,544 KB
testcase_20 AC 99 ms
12,800 KB
testcase_21 AC 98 ms
12,928 KB
testcase_22 AC 107 ms
13,696 KB
testcase_23 AC 119 ms
16,512 KB
testcase_24 AC 142 ms
18,176 KB
testcase_25 AC 148 ms
20,096 KB
testcase_26 AC 158 ms
20,224 KB
testcase_27 WA -
testcase_28 AC 139 ms
20,224 KB
testcase_29 AC 160 ms
20,352 KB
testcase_30 AC 159 ms
20,224 KB
testcase_31 AC 146 ms
19,968 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
xs = gets.split.map(&:to_i).sort
diff = xs[1] - xs[0]
(1..N-2).each do |i|
  if xs[i+1] - xs[i] != diff
    puts 'NO'
    exit
  end
end
puts 'YES'
0