結果
| 問題 | No.1178 Can you draw a Circle? |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-04-05 23:40:15 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 122 bytes |
| 記録 | |
| コンパイル時間 | 448 ms |
| コンパイル使用メモリ | 85,280 KB |
| 実行使用メモリ | 67,520 KB |
| 最終ジャッジ日時 | 2026-05-21 15:12:36 |
| 合計ジャッジ時間 | 2,286 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 2 |
| other | WA * 2 RE * 13 |
ソースコード
a,b,c,d,e,f = map(int,input().split()) from math import sqrt r = 4 * a * (f - e) - c * c - d * d print(sqrt(r) / (2 * a))