結果

問題 No.105 arcの六角ボルト
ユーザー AEnAEn
提出日時 2022-11-28 22:26:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 268 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-04-15 19:58:35
合計ジャッジ時間 1,097 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

T = int(input())
for i in range(T):
    emp = input()
    ang = 90
    for i in range(6):
        x, y = map(float, input().split())
        if x>0 and y>=0:
            theta = math.atan2(y,x)
            ang = min(ang,math.degrees(theta))
    print(ang)
0