結果

問題 No.48 ロボットの操縦
ユーザー RCCWRCCW
提出日時 2017-02-02 14:26:07
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 246 bytes
コンパイル時間 1,608 ms
コンパイル使用メモリ 160,944 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-24 03:52:04
合計ジャッジ時間 2,321 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <iostream>
#include <string>
using namespace std;

int main() {

double a,b,c;
int count =0;
cin>>a>>b>>c;
if(a!=0&&b>=0){count+=1;}
if(b<0){count+=2;}

count+=ceil(abs(a)/c)+ceil(abs(b)/c);
cout<<count<<endl;
}
0