結果

問題 No.172 UFOを捕まえろ
ユーザー 👑 rin204rin204
提出日時 2021-08-29 16:28:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 5,000 ms
コード長 89 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 87,368 KB
実行使用メモリ 71,896 KB
最終ジャッジ日時 2023-08-14 10:27:06
合計ジャッジ時間 3,017 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
71,492 KB
testcase_01 AC 69 ms
71,744 KB
testcase_02 AC 63 ms
71,632 KB
testcase_03 AC 64 ms
71,484 KB
testcase_04 AC 65 ms
71,592 KB
testcase_05 AC 62 ms
71,736 KB
testcase_06 AC 62 ms
71,752 KB
testcase_07 AC 63 ms
71,628 KB
testcase_08 AC 61 ms
71,784 KB
testcase_09 AC 60 ms
71,844 KB
testcase_10 AC 61 ms
71,808 KB
testcase_11 AC 60 ms
71,744 KB
testcase_12 AC 63 ms
71,848 KB
testcase_13 AC 62 ms
71,416 KB
testcase_14 AC 65 ms
71,588 KB
testcase_15 AC 64 ms
71,368 KB
testcase_16 AC 62 ms
71,620 KB
testcase_17 AC 62 ms
71,708 KB
testcase_18 AC 64 ms
71,896 KB
testcase_19 AC 63 ms
71,808 KB
testcase_20 AC 65 ms
71,744 KB
testcase_21 AC 63 ms
71,604 KB
testcase_22 AC 63 ms
71,484 KB
testcase_23 AC 63 ms
71,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x, y, r = map(int, input().split())
d = abs(x) + abs(y) + 2 ** 0.5 * r
print(int(d) + 1)
0