結果
問題 | No.48 ロボットの操縦 |
ユーザー | wild |
提出日時 | 2017-03-08 20:23:30 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 328 bytes |
コンパイル時間 | 579 ms |
コンパイル使用メモリ | 67,200 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-23 19:26:16 |
合計ジャッジ時間 | 1,323 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 25 |
ソースコード
#include<iostream> #include<cmath> using namespace std; int main(){ int x, y, l; cin >> x >> y >> l; int xl = abs(x)/l, yl = abs(y)/l; if(x%l != 0) xl += 1; if(y%l != 0) yl += 1; int dir = 0; if(y < 0 && x == 0) dir += 2; else { if(y < 0) dir +=1; if(x != 0) dir += 1; } cout << dir + xl + yl << endl; }