結果
問題 | No.105 arcの六角ボルト |
ユーザー | convexineq |
提出日時 | 2020-12-13 21:43:06 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 201 ms / 5,000 ms |
コード長 | 307 bytes |
コンパイル時間 | 407 ms |
コンパイル使用メモリ | 82,688 KB |
実行使用メモリ | 79,192 KB |
最終ジャッジ日時 | 2024-09-19 23:58:39 |
合計ジャッジ時間 | 1,067 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ソースコード
def solve(): for _ in range(6): a,b = map(float,input().split()) if 0.01 < a < 0.99 and 0.01 < b < 0.99: x = acos(a)*180.0/pi if x >= 52.0: x -= 60.0 return x from math import acos,pi n = int(input()) for i in range(n): input() print(solve())