結果
| 問題 | No.2515 Similar Triangles |
| コンテスト | |
| ユーザー |
prin_kemkem
|
| 提出日時 | 2023-10-28 18:40:32 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 231 ms / 2,000 ms |
| + 259µs | |
| コード長 | 587 bytes |
| 記録 | |
| コンパイル時間 | 249 ms |
| コンパイル使用メモリ | 96,336 KB |
| 実行使用メモリ | 98,208 KB |
| 最終ジャッジ日時 | 2026-09-04 05:42:03 |
| 合計ジャッジ時間 | 4,274 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 |
ソースコード
from collections import defaultdict, deque, Counter
import copy
from itertools import combinations, permutations, product, accumulate, groupby, chain
from heapq import heapify, heappop, heappush
import math
import bisect
from pprint import pprint
from random import randint
import sys
# sys.setrecursionlimit(200000)
input = lambda: sys.stdin.readline().rstrip('\n')
inf = float('inf')
mod1 = 10**9+7
mod2 = 998244353
def ceil_div(x, y): return -(-x//y)
#################################################
ax, ay, bx, by, cx = map(int, input().split())
print("Yes" if ay == by else "No")
prin_kemkem