結果
| 問題 |
No.172 UFOを捕まえろ
|
| コンテスト | |
| ユーザー |
Yang33
|
| 提出日時 | 2016-01-02 20:40:04 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 297 bytes |
| コンパイル時間 | 515 ms |
| コンパイル使用メモリ | 58,844 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-15 14:34:45 |
| 合計ジャッジ時間 | 1,359 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 |
ソースコード
#include<iostream>
#include<math.h>
using namespace std;
//マンハッタン距離ってなんやねーんってなって時間とかした
//もっとよく考えたい
int main(void)
{
int x, y, r,ans;
cin >> x >> y >> r;
ans = ceil(abs(x) + abs(y) + sqrt(2)*r);
cout << ans;
return 0;
}
Yang33