結果
| 問題 |
No.2976 高階多点評価
|
| コンテスト | |
| ユーザー |
👑 |
| 提出日時 | 2023-11-06 20:53:41 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 401 ms / 1,000 ms |
| コード長 | 139 bytes |
| コンパイル時間 | 349 ms |
| コンパイル使用メモリ | 82,260 KB |
| 実行使用メモリ | 77,696 KB |
| 最終ジャッジ日時 | 2024-11-28 21:35:27 |
| 合計ジャッジ時間 | 18,759 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 38 |
ソースコード
import math as m I=input for t in [0]*int(I()): N,X=I().split() X=float(X) c=m.acos(-X/m.sqrt(X*X+1)) print(m.sin(int(N)*c+c)/m.sin(c))