結果
| 問題 | No.105 arcの六角ボルト |
| コンテスト | |
| ユーザー |
Konton7
|
| 提出日時 | 2019-09-28 20:23:40 |
| 言語 | Python3 (3.14.2 + numpy 2.4.0 + scipy 1.16.3) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 270 bytes |
| 記録 | |
| コンパイル時間 | 193 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 11,008 KB |
| 最終ジャッジ日時 | 2024-10-03 04:13:41 |
| 合計ジャッジ時間 | 852 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 1 |
ソースコード
import math
n = int(input())
for i in range(n):
input()
for i in range(6):
x, y = [ float(v) for v in input().split() ]
if x >= 0 and y >= 0:
d = math.atan2(y, x) * (180/math.pi)
if 50 >= d >= 0:
print(d)
Konton7