結果

問題 No.105 arcの六角ボルト
ユーザー maspymaspy
提出日時 2020-02-05 21:57:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 316 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 11,776 KB
実行使用メモリ 46,692 KB
最終ジャッジ日時 2023-10-24 10:48:11
合計ジャッジ時間 4,540 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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)))
0