結果
| 問題 |
No.172 UFOを捕まえろ
|
| コンテスト | |
| ユーザー |
suibaka_ku
|
| 提出日時 | 2017-03-12 08:06:01 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 369 bytes |
| コンパイル時間 | 888 ms |
| コンパイル使用メモリ | 89,636 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-25 04:49:44 |
| 合計ジャッジ時間 | 1,787 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 |
ソースコード
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <set>
#include <map>
#include <cmath>
#include <iomanip>
#include <codecvt>
#include <locale>
using namespace std;
using ll = long long;
int main() {
double x, y, r;
cin >> x >> y >> r;
x = abs(x)+r/sqrt(2), y = abs(y)+r/sqrt(2);
cout << (int)(x + y) + 1 << endl;
}
suibaka_ku