結果
問題 | No.48 ロボットの操縦 |
ユーザー | kanzaki_puyo |
提出日時 | 2015-11-05 23:29:00 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 316 bytes |
コンパイル時間 | 410 ms |
コンパイル使用メモリ | 60,100 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-21 18:30:14 |
合計ジャッジ時間 | 1,132 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 25 |
ソースコード
#include<iostream> #include<cmath> using namespace std; int main() { int x, y, l; int time = 0; cin >> x >> y >> l; time += ceil(fabs(x)/l); time += ceil(fabs(y)/l); if(x == 0 && y >= 0); else if(x != 0 && y >= 0) time++; else time += 2; cout << time << endl; return 0; }