結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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