結果
問題 | No.105 arcの六角ボルト |
ユーザー | ayaoni |
提出日時 | 2020-12-15 16:51:01 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 119 ms / 5,000 ms |
コード長 | 761 bytes |
コンパイル時間 | 190 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 77,112 KB |
最終ジャッジ日時 | 2024-09-20 01:45:59 |
合計ジャッジ時間 | 777 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ソースコード
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)