結果
| 問題 | No.105 arcの六角ボルト |
| コンテスト | |
| ユーザー |
mkawa2
|
| 提出日時 | 2019-12-21 11:53:39 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 631 bytes |
| 記録 | |
| コンパイル時間 | 199 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 11,008 KB |
| 最終ジャッジ日時 | 2024-07-19 05:15:44 |
| 合計ジャッジ時間 | 895 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 1 |
ソースコード
import sys
import math
sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LF(): return list(map(float, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def main():
n=int(input())
for _ in range(n):
input()
xy=[LF() for _ in range(6)]
for x,y in xy:
rad=math.atan2(y,x)
if 0<=rad<math.pi/3:
print(math.degrees(rad))
break
main()
mkawa2