結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
16,640 KB
testcase_01 AC 74 ms
12,160 KB
testcase_02 AC 76 ms
12,160 KB
testcase_03 AC 73 ms
12,160 KB
testcase_04 AC 112 ms
21,760 KB
testcase_05 AC 91 ms
15,488 KB
testcase_06 AC 89 ms
15,872 KB
testcase_07 AC 93 ms
16,000 KB
testcase_08 AC 117 ms
21,632 KB
testcase_09 AC 121 ms
22,656 KB
testcase_10 AC 95 ms
16,512 KB
testcase_11 AC 113 ms
20,736 KB
testcase_12 AC 97 ms
17,536 KB
testcase_13 AC 97 ms
17,152 KB
testcase_14 AC 143 ms
23,424 KB
testcase_15 AC 77 ms
12,288 KB
testcase_16 AC 80 ms
12,800 KB
testcase_17 AC 81 ms
12,288 KB
testcase_18 AC 82 ms
13,056 KB
testcase_19 AC 86 ms
13,056 KB
testcase_20 AC 88 ms
13,312 KB
testcase_21 AC 87 ms
13,440 KB
testcase_22 AC 102 ms
14,720 KB
testcase_23 AC 107 ms
17,920 KB
testcase_24 AC 136 ms
22,528 KB
testcase_25 AC 119 ms
22,912 KB
testcase_26 AC 153 ms
25,472 KB
testcase_27 AC 110 ms
19,712 KB
testcase_28 AC 115 ms
22,784 KB
testcase_29 AC 150 ms
25,344 KB
testcase_30 AC 152 ms
25,088 KB
testcase_31 AC 114 ms
22,144 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