結果

問題 No.105 arcの六角ボルト
ユーザー Konton7
提出日時 2019-09-28 20:23:10
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 257 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-03 04:13:40
合計ジャッジ時間 691 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

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