結果

問題 No.635 自然門松列
ユーザー RyutoRyuto
提出日時 2018-03-05 16:15:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 650 ms
コード長 1,389 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 60,672 KB
最終ジャッジ日時 2024-06-23 08:51:30
合計ジャッジ時間 2,082 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,224 KB
testcase_01 AC 45 ms
52,224 KB
testcase_02 AC 40 ms
52,608 KB
testcase_03 AC 42 ms
52,608 KB
testcase_04 AC 41 ms
52,352 KB
testcase_05 AC 50 ms
60,288 KB
testcase_06 AC 49 ms
60,544 KB
testcase_07 AC 51 ms
60,288 KB
testcase_08 AC 41 ms
52,608 KB
testcase_09 AC 40 ms
52,864 KB
testcase_10 AC 49 ms
60,160 KB
testcase_11 AC 49 ms
59,520 KB
testcase_12 AC 53 ms
60,544 KB
testcase_13 AC 50 ms
60,672 KB
testcase_14 AC 49 ms
60,416 KB
testcase_15 AC 39 ms
52,096 KB
testcase_16 AC 38 ms
51,968 KB
testcase_17 AC 49 ms
60,288 KB
testcase_18 AC 49 ms
60,288 KB
testcase_19 AC 49 ms
60,032 KB
testcase_20 AC 50 ms
60,160 KB
testcase_21 AC 49 ms
60,288 KB
testcase_22 AC 49 ms
60,032 KB
testcase_23 AC 50 ms
60,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python

def ChkKado(x, y, z):
    if x != y != z != x:
        if x > y < z or x < y > z:
            return True
    return False


def MkRange1(d0, dt):
    tmax = float('inf')
    tmin = 0.0

    if dt == 0:
        if d0 <= 0:
            tmax = -1
    elif dt > 0:
        tmin = max(0.0, -d0/dt)
    elif dt < 0:
        tmax = -d0/dt

    return [tmin, tmax]


def MkRange2(d0, dt):
    tmax = float('inf')
    tmin = 0.0

    if dt == 0:
        if d0 >= 0:
            tmax = -1
    elif dt > 0:
        tmax = -d0/dt
    elif dt < 0:
        tmin = max(0.0, -d0/dt)

    return [tmin, tmax]


def ChkAbKado(x0, y0, z0, xt, yt, zt):
    dyx = [y0 - x0, yt - xt]
    dyz = [y0 - z0, yt - zt]
    dzx = [z0 - x0, zt - xt]
    yxrange1 = MkRange1(*dyx)
    yzrange1 = MkRange1(*dyz)
    yxrange2 = MkRange2(*dyx)
    yzrange2 = MkRange2(*dyz)
    if dzx == [0.0, 0.0]:
        return False
    elif max(yxrange1[0], yzrange1[0], 0.0) < min(yxrange1[1], yzrange1[1]):
        return True
    elif max(yxrange2[0], yzrange2[0], 0.0) < min(yxrange2[1], yzrange2[1]):
        return True
    else:
        return False


N = int(input())
tcases = []
for i in range(N):
    tcases.append([int(x) for x in input().split()])

for tcase in tcases:
    if ChkKado(*tcase[:3]):
        print('YES')
    elif ChkAbKado(*tcase):
        print('YES')
    else:
        print('NO')
0