結果

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

テストケース

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