結果
| 問題 | 
                            No.105 arcの六角ボルト
                             | 
                    
| コンテスト | |
| ユーザー | 
                             convexineq
                         | 
                    
| 提出日時 | 2020-12-13 20:52:42 | 
| 言語 | PyPy3  (7.3.15)  | 
                    
| 結果 | 
                             
                                RE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 303 bytes | 
| コンパイル時間 | 152 ms | 
| コンパイル使用メモリ | 82,256 KB | 
| 実行使用メモリ | 69,352 KB | 
| 最終ジャッジ日時 | 2024-09-19 23:55:47 | 
| 合計ジャッジ時間 | 851 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | RE * 1 | 
ソースコード
def solve():
    for _ in range(6):
        a,b = map(float,input().split())
        if a > 0 and b > 0:
            x = acos(a)*180/pi
            if x >= 52: x -= 60
            ans = x
    return ans
        
from math import acos,pi
n = int(input())
for i in range(n):
    input()
    print(solve())
            
            
            
        
            
convexineq