結果

問題 No.406 鴨等間隔の法則
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2020-11-07 18:45:23
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 108 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 23,168 KB
最終ジャッジ日時 2024-07-22 14:42:31
合計ジャッジ時間 4,727 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
15,488 KB
testcase_01 AC 76 ms
12,160 KB
testcase_02 AC 76 ms
12,160 KB
testcase_03 WA -
testcase_04 AC 120 ms
19,456 KB
testcase_05 AC 90 ms
14,592 KB
testcase_06 AC 92 ms
14,720 KB
testcase_07 AC 91 ms
14,976 KB
testcase_08 AC 121 ms
19,456 KB
testcase_09 AC 126 ms
20,224 KB
testcase_10 AC 95 ms
15,360 KB
testcase_11 AC 114 ms
18,432 KB
testcase_12 AC 101 ms
16,128 KB
testcase_13 AC 98 ms
15,872 KB
testcase_14 AC 145 ms
21,376 KB
testcase_15 WA -
testcase_16 AC 82 ms
12,288 KB
testcase_17 AC 79 ms
12,160 KB
testcase_18 AC 80 ms
12,544 KB
testcase_19 AC 81 ms
12,672 KB
testcase_20 AC 87 ms
12,672 KB
testcase_21 AC 85 ms
12,800 KB
testcase_22 AC 93 ms
14,208 KB
testcase_23 AC 105 ms
16,384 KB
testcase_24 AC 134 ms
19,456 KB
testcase_25 AC 129 ms
20,096 KB
testcase_26 AC 156 ms
23,040 KB
testcase_27 WA -
testcase_28 AC 115 ms
20,096 KB
testcase_29 AC 152 ms
23,040 KB
testcase_30 AC 157 ms
22,912 KB
testcase_31 AC 127 ms
19,968 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

gets
puts (K = gets.split.map(&:to_i).sort).each_cons(2).all?{|x| x[1] - x[0] == K[1] - K[0]} ? "YES" : "NO"
0