結果

問題 No.406 鴨等間隔の法則
ユーザー mmmpppmmmppp
提出日時 2017-02-16 02:12:43
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 94 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 21,376 KB
最終ジャッジ日時 2024-11-07 10:14:47
合計ジャッジ時間 5,549 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
16,128 KB
testcase_01 AC 88 ms
12,288 KB
testcase_02 AC 88 ms
12,160 KB
testcase_03 WA -
testcase_04 AC 167 ms
20,736 KB
testcase_05 AC 117 ms
15,232 KB
testcase_06 AC 120 ms
15,232 KB
testcase_07 AC 121 ms
15,744 KB
testcase_08 AC 167 ms
20,480 KB
testcase_09 AC 179 ms
21,248 KB
testcase_10 AC 124 ms
16,256 KB
testcase_11 AC 155 ms
19,840 KB
testcase_12 AC 131 ms
16,768 KB
testcase_13 AC 128 ms
16,768 KB
testcase_14 AC 155 ms
19,840 KB
testcase_15 WA -
testcase_16 AC 95 ms
12,672 KB
testcase_17 AC 92 ms
12,288 KB
testcase_18 AC 95 ms
12,672 KB
testcase_19 AC 94 ms
12,672 KB
testcase_20 AC 97 ms
12,800 KB
testcase_21 AC 100 ms
13,312 KB
testcase_22 AC 108 ms
13,568 KB
testcase_23 AC 130 ms
17,408 KB
testcase_24 AC 150 ms
19,328 KB
testcase_25 AC 171 ms
21,248 KB
testcase_26 AC 173 ms
21,120 KB
testcase_27 WA -
testcase_28 AC 165 ms
21,248 KB
testcase_29 AC 174 ms
21,120 KB
testcase_30 AC 172 ms
21,120 KB
testcase_31 AC 170 ms
20,864 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,*c=`dd`.split.map &:to_i
c.sort!
puts (n-1).times.map{|i|c[i+1]-c[i]}.uniq.size==1?:YES: :NO
0