結果
問題 | No.105 arcの六角ボルト |
ユーザー | titia |
提出日時 | 2022-01-19 04:11:07 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 171 ms / 5,000 ms |
コード長 | 334 bytes |
コンパイル時間 | 234 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-05-02 19:39:48 |
合計ジャッジ時間 | 1,152 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ソースコード
from math import atan2 from math import degrees T=int(input()) for tests in range(T): _=input() X=[tuple(map(float,input().split())) for i in range(6)] Y=[] for x,y in X: Y.append(degrees(atan2(y,x))) #print(Y) ANS=50 for y in Y: if -10**(-6)<=y<ANS: ANS=y print(ANS)