結果

問題 No.105 arcの六角ボルト
ユーザー H3PO4
提出日時 2020-04-26 12:08:27
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 436 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-11-16 18:44:31
合計ジャッジ時間 1,391 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N = int(input())
for i in range(N):
    input()
    flag = True
    for _ in range(6):
        x, y = map(float, input().split())
        if flag \
                and 1 / 2 - 10 ** -12 < x <= 1 + 10 ** -12 \
                and - 10 ** -12 <= y < math.sin(math.pi / 3) + 10 ** -12:
            ans = (math.asin(y) * 180 / math.pi)
            print(f'{ans if ans < 60 - 10 ** (-12) else 0 :.8f}')
            flag = False
0