結果

問題 No.105 arcの六角ボルト
ユーザー Konton7Konton7
提出日時 2019-09-28 20:27:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 288 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-04-14 07:00:39
合計ジャッジ時間 983 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import math
n = int(input())
for i in range(n):
    input()
    for i in range(6):
        x, y = [ float(v) for v in input().split() ]
        if x >= 0 and y >= 0:
            d = math.atan2(y, x) * (180/math.pi)
            if 50 >= d >= 0:
                print('{0:.12f}'.format(d))
0