結果

問題 No.172 UFOを捕まえろ
ユーザー pluto77pluto77
提出日時 2016-02-23 18:39:56
言語 Python2
(2.7.18)
結果
AC  
実行時間 12 ms / 5,000 ms
コード長 144 bytes
コンパイル時間 49 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-10-15 14:36:48
合計ジャッジ時間 987 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding: utf-8
##yuki_172
import math

s=map(int,raw_input().split())
x=s[0]
y=s[1]
r=s[2]

res=int(abs(x)+abs(y)+r*math.sqrt(2)+1.0)
print res
0