結果
問題 |
No.3180 angles sum
|
ユーザー |
|
提出日時 | 2025-06-13 23:23:25 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 225 bytes |
コンパイル時間 | 194 ms |
コンパイル使用メモリ | 82,768 KB |
実行使用メモリ | 76,948 KB |
最終ジャッジ日時 | 2025-06-14 01:44:09 |
合計ジャッジ時間 | 4,808 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 16 WA * 1 |
ソースコード
import sys input = sys.stdin.readline T = int(input()) for _ in range(T): ax, ay, bx, by, cx, cy = map(int, input().split()) if cy*(ax*bx-ay*by) == cx*(ay*bx+by*ax): print("Yes") else: print("No")