結果
| 問題 |
No.105 arcの六角ボルト
|
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2020-12-13 20:56:00 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 319 bytes |
| コンパイル時間 | 175 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-09-19 23:56:32 |
| 合計ジャッジ時間 | 650 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 1 |
ソースコード
def solve():
for _ in range(6):
a,b = map(float,input().split())
if 0.1 < a < 0.9 and 0.1 < b < 0.9:
x = acos(a)*180/pi
if x >= 52: x -= 60
ans = x
return ans
from math import acos,pi
n = int(input())
for i in range(n):
input()
print(solve())
convexineq