結果

問題 No.172 UFOを捕まえろ
ユーザー chacoder1chacoder1
提出日時 2021-04-14 21:38:21
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 306 bytes
コンパイル時間 2,088 ms
コンパイル使用メモリ 192,084 KB
最終ジャッジ日時 2025-01-20 17:43:02
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
typedef long long ll;
#define rep(i,n) for(int i=0;i<n;i++)

signed main() {
  double x,y,r;
  cin>>x>>y>>r;
  int temp=0;
  for(int i=1;i<=500;i++){
    if(pow(r*r*2,0.5)<i){
      temp=i;
      break;
    }
  }
  cout<<temp+abs(x)+abs(y)<<endl;
  return 0;
}
0