結果
問題 | No.172 UFOを捕まえろ |
ユーザー | IJMP320 |
提出日時 | 2015-03-26 23:34:52 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 627 bytes |
コンパイル時間 | 1,338 ms |
コンパイル使用メモリ | 158,700 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 13:59:43 |
合計ジャッジ時間 | 2,062 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long int ll; typedef unsigned long long int ull; typedef pair<int,int> pii; #define rep(i,n) for(int i=0;i<(int)(n);i++) #define reprop(i,n) for(int i=(n);i>=0;i--) #define all(a) (a).begin(),(a).end() #define m_p(a,b) make_pair(a,b) #define p_b(a) push_back(a) #define check_range(x,y,w,h) (x>=0&&x<w&&y>=0&&y<h) const int INF = 2000000000; const int dx[4]={0,1,0,-1}, dy[4]={-1,0,1,0}; struct P{int x;int y;P(int X=0,int Y=0){x=X;y=Y;}}; int main() { int x,y,r; cin >> x >> y >> r; int ans = abs(x)+abs(y)+ceil(r*1.41421356L); cout << ans << endl; return 0; }