結果
問題 | No.105 arcの六角ボルト |
ユーザー | cologne |
提出日時 | 2022-02-02 16:29:41 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 85 ms / 5,000 ms |
コード長 | 363 bytes |
コンパイル時間 | 246 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 76,544 KB |
最終ジャッジ日時 | 2024-06-11 09:28:43 |
合計ジャッジ時間 | 884 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ソースコード
import math import sys def input(): return sys.stdin.readline().rstrip() def main(): N = int(input()) for i in range(N): for i in range(7): s = input() x, y = map(float, s.split()) theta = math.atan2(y, x) / math.pi * 180 ans = (theta+5) % 60 - 5 print(ans) if __name__ == '__main__': main()