結果

問題 No.406 鴨等間隔の法則
ユーザー simansiman
提出日時 2020-06-03 21:45:26
言語 Ruby
(3.3.0)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 155 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 25,472 KB
最終ジャッジ日時 2024-11-26 00:30:17
合計ジャッジ時間 6,017 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
16,768 KB
testcase_01 AC 83 ms
12,288 KB
testcase_02 AC 88 ms
12,288 KB
testcase_03 AC 88 ms
12,160 KB
testcase_04 AC 131 ms
21,888 KB
testcase_05 AC 102 ms
15,616 KB
testcase_06 AC 101 ms
15,872 KB
testcase_07 AC 101 ms
16,000 KB
testcase_08 AC 126 ms
21,760 KB
testcase_09 AC 125 ms
22,656 KB
testcase_10 AC 101 ms
16,512 KB
testcase_11 AC 120 ms
20,992 KB
testcase_12 AC 105 ms
17,536 KB
testcase_13 AC 104 ms
17,280 KB
testcase_14 AC 151 ms
23,552 KB
testcase_15 AC 85 ms
12,288 KB
testcase_16 AC 90 ms
13,056 KB
testcase_17 AC 86 ms
12,288 KB
testcase_18 AC 90 ms
13,184 KB
testcase_19 AC 94 ms
13,056 KB
testcase_20 AC 94 ms
13,312 KB
testcase_21 AC 95 ms
13,568 KB
testcase_22 AC 101 ms
14,592 KB
testcase_23 AC 107 ms
17,664 KB
testcase_24 AC 142 ms
22,656 KB
testcase_25 AC 126 ms
22,656 KB
testcase_26 AC 169 ms
25,472 KB
testcase_27 AC 124 ms
19,712 KB
testcase_28 AC 126 ms
22,528 KB
testcase_29 AC 165 ms
25,472 KB
testcase_30 AC 162 ms
25,088 KB
testcase_31 AC 122 ms
22,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

if X.uniq.size == N && X.sort.each_cons(2).map { |a, b| b - a }.uniq.size == 1
  puts 'YES'
else
  puts 'NO'
end
0