結果
| 問題 |
No.8076 eLepHAnTpAoOM
|
| コンテスト | |
| ユーザー |
H20
|
| 提出日時 | 2021-04-01 21:06:37 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 153 ms / 2,000 ms |
| コード長 | 185 bytes |
| コンパイル時間 | 316 ms |
| コンパイル使用メモリ | 82,556 KB |
| 実行使用メモリ | 80,640 KB |
| 最終ジャッジ日時 | 2024-12-21 05:04:23 |
| 合計ジャッジ時間 | 4,478 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 23 |
ソースコード
from decimal import *
H,R = input().split()
H = Decimal(H)
R = Decimal(R)
print(Decimal('-8.245') + Decimal('6.807') * H + Decimal('7.073') * Decimal(2) * R * Decimal('3.14159265359'))
H20