結果
問題 | No.105 arcの六角ボルト |
ユーザー | rlangevin |
提出日時 | 2023-02-26 00:56:16 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 173 ms / 5,000 ms |
コード長 | 456 bytes |
コンパイル時間 | 466 ms |
コンパイル使用メモリ | 82,268 KB |
実行使用メモリ | 77,488 KB |
最終ジャッジ日時 | 2024-09-13 18:22:53 |
合計ジャッジ時間 | 1,270 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ソースコード
from math import * T = int(input()) for _ in range(T): ans = 0 input() for i in range(6): X, Y = map(float, input().split()) if X >= 1: X = 1 elif X <= -1: X = -1 if Y >= 1: Y = 1 elif Y <= -1: Y = -1 x = degrees(acos(X)) - 60 y = degrees(asin(Y)) - 60 if 0 <= x <= 50 and 0 <= y <= 50: ans = x print(ans)