結果
問題 | No.635 自然門松列 |
ユーザー | rlangevin |
提出日時 | 2023-10-16 22:18:25 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,398 bytes |
コンパイル時間 | 310 ms |
コンパイル使用メモリ | 82,112 KB |
実行使用メモリ | 55,332 KB |
最終ジャッジ日時 | 2024-09-16 22:26:18 |
合計ジャッジ時間 | 2,367 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
52,480 KB |
testcase_01 | AC | 39 ms
51,968 KB |
testcase_02 | AC | 39 ms
52,096 KB |
testcase_03 | AC | 39 ms
51,712 KB |
testcase_04 | AC | 39 ms
52,608 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 39 ms
51,968 KB |
testcase_16 | AC | 39 ms
51,712 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
import sys input = sys.stdin.readline N = int(input()) def check(x1, x2, y1, y2): return x1 == x2 and y1 == y2 def kadomatsu(a, b, c): if a == b or b == c or c == a: return False if a < b < c or a > b > c: return False return True for _ in range(N): x1, x2, x3, y1, y2, y3 = map(int, input().split()) if check(x1, x2, y1, y2) or check(x1, x3, y1, y3) or check(x3, x2, y3, y2): print("NO") continue if kadomatsu(x1, x2, x3) or kadomatsu(y1, y2, y3): print("YES") continue if x1 == x3: print("YES") continue if x1 == x2: x1, x3 = x3, x1 y1, y3 = y3, y1 if x2 == x3: if x1 < x2: if y2 > y3: print("YES") else: print("NO") else: if y2 < y3: print("YES") else: print("NO") else: if x1 > x2 > x3: x1, x3 = x3, x1 y1, y3 = y3, y1 if y2 == y3: if y1 <= y2: print("NO") else: print("YES") else: if y1 <= y2 <= y3: print("NO") else: if (y3 - y2) * x1 + (x2 - x3) * y1 > x2 * (y3 - y2) + (x2 - x3) * y2: print("YES") else: print("NO")