結果

問題 No.3344 Common Tangent Line
コンテスト
ユーザー tassei903
提出日時 2025-10-29 13:58:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 410 bytes
コンパイル時間 567 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 77,668 KB
最終ジャッジ日時 2025-11-13 21:03:06
合計ジャッジ時間 7,720 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 40
権限があれば一括ダウンロードができます

ソースコード

diff #

MIN = -100
MAX = 100

T = int(input())

assert 1 <= T <= 2 * 10 ** 5

for _ in range(T):
    x1, y1, r1 = map(int, input().split())
    x2, y2, r2 = map(int, input().split())
    assert MIN <= x1 <= MAX
    assert MIN <= y1 <= MAX
    assert MIN <= x2 <= MAX
    assert MIN <= y2 <= MAX
    assert (x1, y1) != (x2, y2)
    assert 0 < r1 <= r2 <= MAX
    assert (x1 - x2) ** 2 + (y1 - y2) ** 2 > (r1 + r2) ** 2
0