結果
| 問題 | 
                            No.105 arcの六角ボルト
                             | 
                    
| コンテスト | |
| ユーザー | 
                             maspy
                         | 
                    
| 提出日時 | 2020-02-05 21:57:07 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 316 bytes | 
| コンパイル時間 | 87 ms | 
| コンパイル使用メモリ | 12,416 KB | 
| 実行使用メモリ | 45,540 KB | 
| 最終ジャッジ日時 | 2024-09-23 03:10:59 | 
| 合計ジャッジ時間 | 1,941 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | WA * 1 | 
ソースコード
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np
N = int(readline())
data = np.array(read().split(), np.float64)
X = data[::12]
Y = data[1::12]
answer = (np.arctan2(Y,X) / np.pi * 180) % 60
print('\n'.join(answer.astype(str)))
            
            
            
        
            
maspy