結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
17,280 KB
testcase_01 WA -
testcase_02 AC 90 ms
12,288 KB
testcase_03 WA -
testcase_04 AC 153 ms
23,296 KB
testcase_05 AC 111 ms
16,256 KB
testcase_06 AC 112 ms
16,256 KB
testcase_07 AC 112 ms
16,512 KB
testcase_08 AC 155 ms
23,040 KB
testcase_09 AC 160 ms
24,192 KB
testcase_10 AC 114 ms
17,152 KB
testcase_11 AC 148 ms
21,888 KB
testcase_12 AC 122 ms
18,048 KB
testcase_13 AC 124 ms
17,920 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 97 ms
12,544 KB
testcase_17 AC 93 ms
12,160 KB
testcase_18 AC 95 ms
12,672 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 96 ms
13,312 KB
testcase_22 WA -
testcase_23 AC 129 ms
18,816 KB
testcase_24 WA -
testcase_25 AC 163 ms
24,320 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 157 ms
21,376 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 157 ms
23,936 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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