結果
| 問題 | No.172 UFOを捕まえろ |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-04-05 03:46:55 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 140 bytes |
| 記録 | |
| コンパイル時間 | 126 ms |
| コンパイル使用メモリ | 85,888 KB |
| 実行使用メモリ | 52,352 KB |
| 最終ジャッジ日時 | 2026-03-24 15:43:24 |
| 合計ジャッジ時間 | 1,482 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 2 |
| other | AC * 1 WA * 20 |
ソースコード
import math x,y,r = map(int,input().split()) ans = math.ceil((math.sqrt((x+math.sqrt(r))**2+(y+math.sqrt(r))**2))*math.sqrt(2)) print(ans)