結果

問題 No.3664 Manhattan Circumcenter
コンテスト
ユーザー t5ugu
提出日時 2026-08-21 21:27:02
言語 PyPy3
(7.3.23)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
WA  
実行時間 -
コード長 395 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 234 ms
コンパイル使用メモリ 95,856 KB
実行使用メモリ 79,360 KB
最終ジャッジ日時 2026-08-30 13:02:25
合計ジャッジ時間 6,268 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 57
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

# 制約チェック
P = list(map(int, input().split()))
assert len(P) == 2
Px, Py = P
assert 0 <= Px and Px <= 100
assert 0 <= Py and Py <= 100

Q = list(map(int, input().split()))
assert len(Q) == 2
Qx, Qy = Q
assert 0 <= Qx and Qx <= 100
assert 0 <= Qy and Qy <= 100

R = list(map(int, input().split()))
assert len(R) == 2
Rx, Ry = R
assert 0 <= Rx and Rx <= 100
assert 0 <= Ry and Ry <= 100
0