結果

問題 No.105 arcの六角ボルト
ユーザー ayaoniayaoni
提出日時 2020-12-15 16:51:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 761 bytes
コンパイル時間 674 ms
コンパイル使用メモリ 81,632 KB
実行使用メモリ 76,536 KB
最終ジャッジ日時 2023-10-20 06:07:09
合計ジャッジ時間 930 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import sys
from cmath import phase
from math import degrees
sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


for _ in range(I()):
    T = S()
    XY = [tuple(map(float,S().split())) for _ in range(6)]
    x,y = XY[0]
    theta = phase(complex(x,y))
    a = degrees(theta)
    ans = a+360-60*int((a+360)/60)
    if ans > 59:
        print(0)
    else:
        print(ans)
0