結果

問題 No.635 自然門松列
ユーザー finefine
提出日時 2018-01-21 02:06:52
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 789 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-06-07 12:08:35
合計ジャッジ時間 3,350 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,288 KB
testcase_01 AC 94 ms
12,032 KB
testcase_02 AC 90 ms
12,160 KB
testcase_03 AC 92 ms
12,288 KB
testcase_04 AC 91 ms
12,160 KB
testcase_05 AC 93 ms
12,032 KB
testcase_06 AC 93 ms
12,160 KB
testcase_07 AC 95 ms
12,288 KB
testcase_08 AC 93 ms
12,160 KB
testcase_09 AC 93 ms
12,160 KB
testcase_10 WA -
testcase_11 AC 94 ms
12,288 KB
testcase_12 AC 94 ms
12,160 KB
testcase_13 AC 94 ms
12,160 KB
testcase_14 AC 95 ms
12,032 KB
testcase_15 WA -
testcase_16 AC 93 ms
12,160 KB
testcase_17 AC 96 ms
12,288 KB
testcase_18 AC 94 ms
12,288 KB
testcase_19 AC 93 ms
12,160 KB
testcase_20 AC 93 ms
12,160 KB
testcase_21 AC 93 ms
12,288 KB
testcase_22 AC 93 ms
12,160 KB
testcase_23 AC 97 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

INF = 1000000000
def solve(x1, x2, x3, y1, y2, y3)
    if (x1 == x2 && y1 == y2) || (x3 == x2 && y3 == y2) || (x1 == x3 && y1 == y3)
        return false
    end
    v1 = y1 * INF + x1
    v2 = y2 * INF + x2
    v3 = y3 * INF + x3
    if (v2 < v1 && v2 < v3) || (v2 > v1 && v2 > v3)
        return true
    end
    if y1 == y2 || y3 == y2
        return false
    end
    f1 = -1.0 * (x1 - x2) / (y1 - y2)
    f3 = -1.0 * (x3 - x2) / (y3 - y2)
    if [f1, f3].max >= 0
        if [f1, f3].max == 0
            return (x2 < x1 && x2 < x3) || (x2 > x1 && x2 > x3)
        elsif f1 == f3
            return false
        else
            return true
        end
    else
        return false
    end
end

n = gets.to_i
n.times do |i|
    puts solve(*gets.split.map(&:to_i)) ? "YES" : "NO"
end
0