結果
| 問題 | No.172 UFOを捕まえろ |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-07-17 06:21:06 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 160 ms / 5,000 ms |
| コード長 | 136 bytes |
| 記録 | |
| コンパイル時間 | 779 ms |
| コンパイル使用メモリ | 20,952 KB |
| 実行使用メモリ | 15,704 KB |
| 最終ジャッジ日時 | 2026-05-04 20:36:48 |
| 合計ジャッジ時間 | 8,167 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 |
ソースコード
#!/usr/bin/python3 from math import ceil x, y, r = map(int, input().split()) res = abs(x) + abs(y) + int(ceil(2 ** .5 * r)) print(res)