結果
| 問題 | 
                            No.105 arcの六角ボルト
                             | 
                    
| コンテスト | |
| ユーザー | 
                             Konton7
                         | 
                    
| 提出日時 | 2019-09-28 20:27:58 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 288 bytes | 
| コンパイル時間 | 90 ms | 
| コンパイル使用メモリ | 12,672 KB | 
| 実行使用メモリ | 10,752 KB | 
| 最終ジャッジ日時 | 2024-10-03 04:13:48 | 
| 合計ジャッジ時間 | 830 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | WA * 1 | 
ソースコード
import math
n = int(input())
for i in range(n):
    input()
    for i in range(6):
        x, y = [ float(v) for v in input().split() ]
        if x >= 0 and y >= 0:
            d = math.atan2(y, x) * (180/math.pi)
            if 50 >= d >= 0:
                print('{0:.12f}'.format(d))
            
            
            
        
            
Konton7