結果
| 問題 |
No.48 ロボットの操縦
|
| コンテスト | |
| ユーザー |
chiyoda
|
| 提出日時 | 2016-06-26 17:20:24 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 257 bytes |
| コンパイル時間 | 555 ms |
| コンパイル使用メモリ | 65,428 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-21 18:43:58 |
| 合計ジャッジ時間 | 1,397 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 25 |
ソースコード
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
int x, y, l;
cin >> x >> y >> l;
int res = (abs(x) + l - 1) / l + (abs(y) + l - 1) / l;
if (y < 0) res += 2;
else if (x != 0) res++;
cout << res << endl;
return 0;
}
chiyoda