結果
| 問題 |
No.105 arcの六角ボルト
|
| コンテスト | |
| ユーザー |
ayaoni
|
| 提出日時 | 2020-12-15 16:49:02 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 705 bytes |
| コンパイル時間 | 137 ms |
| コンパイル使用メモリ | 82,008 KB |
| 実行使用メモリ | 76,788 KB |
| 最終ジャッジ日時 | 2024-09-20 01:45:53 |
| 合計ジャッジ時間 | 971 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 1 |
ソースコード
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))
ans = degrees(theta)
print(ans+360-60*int((ans+360)/60))
ayaoni