結果
問題 |
No.3180 angles sum
|
ユーザー |
![]() |
提出日時 | 2025-06-14 16:06:23 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 186 bytes |
コンパイル時間 | 313 ms |
コンパイル使用メモリ | 82,288 KB |
実行使用メモリ | 54,120 KB |
最終ジャッジ日時 | 2025-06-14 16:06:26 |
合計ジャッジ時間 | 2,907 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 1 |
other | WA * 17 |
ソースコード
def solve(): ax,ay,bx,by,cx,cy = map(int,input().split()) x = ax * bx - ay * by y = ax *by + ay * bx if x * cy == y * cx and cx * x >= 0: print("Yes") else: print("No")