結果

問題 No.406 鴨等間隔の法則
ユーザー jiro8719jiro8719
提出日時 2018-07-10 18:19:18
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 298 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 20,480 KB
最終ジャッジ日時 2024-09-13 13:20:11
合計ジャッジ時間 5,144 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
15,360 KB
testcase_01 RE -
testcase_02 AC 90 ms
12,160 KB
testcase_03 AC 86 ms
12,288 KB
testcase_04 AC 139 ms
19,456 KB
testcase_05 AC 109 ms
14,720 KB
testcase_06 AC 107 ms
14,720 KB
testcase_07 AC 109 ms
14,976 KB
testcase_08 AC 141 ms
19,328 KB
testcase_09 AC 145 ms
19,968 KB
testcase_10 AC 110 ms
15,360 KB
testcase_11 AC 132 ms
18,688 KB
testcase_12 AC 114 ms
16,128 KB
testcase_13 AC 113 ms
16,000 KB
testcase_14 RE -
testcase_15 AC 90 ms
12,288 KB
testcase_16 AC 92 ms
12,544 KB
testcase_17 AC 90 ms
12,160 KB
testcase_18 AC 92 ms
12,416 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 96 ms
12,800 KB
testcase_22 RE -
testcase_23 AC 118 ms
16,384 KB
testcase_24 RE -
testcase_25 AC 145 ms
20,224 KB
testcase_26 RE -
testcase_27 AC 132 ms
20,224 KB
testcase_28 AC 132 ms
20,096 KB
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 144 ms
19,840 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

num = gets.to_i
list = gets.split(" ").map(&:to_i).sort
a = list[0] - list[1]
for i in 0..num-1
    if list[i] == list[i+1]
        puts "NO"
        break
    end
    if list[i] - list[i+1] != a
        puts "NO"
        break
    end
    if i == num-1
        puts "YES"
        break
    end
end
0