結果
| 問題 | No.105 arcの六角ボルト |
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2020-12-13 21:43:06 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 158 ms / 5,000 ms |
| + 454µs | |
| コード長 | 307 bytes |
| 記録 | |
| コンパイル時間 | 223 ms |
| コンパイル使用メモリ | 95,576 KB |
| 実行使用メモリ | 86,044 KB |
| 最終ジャッジ日時 | 2026-08-31 10:49:41 |
| 合計ジャッジ時間 | 1,441 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 |
ソースコード
def solve():
for _ in range(6):
a,b = map(float,input().split())
if 0.01 < a < 0.99 and 0.01 < b < 0.99:
x = acos(a)*180.0/pi
if x >= 52.0: x -= 60.0
return x
from math import acos,pi
n = int(input())
for i in range(n):
input()
print(solve())
convexineq