結果
| 問題 |
No.48 ロボットの操縦
|
| コンテスト | |
| ユーザー |
dsytk7
|
| 提出日時 | 2019-07-24 11:32:30 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 544 bytes |
| コンパイル時間 | 1,611 ms |
| コンパイル使用メモリ | 165,328 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-27 23:18:32 |
| 合計ジャッジ時間 | 2,506 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 25 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for (int (i)=(0);(i)<(int)(n);++(i))
using ll = long long;
using P = pair<int, int>;
using namespace std;
int main() {
int X, Y, L;
cin >> X >> Y >> L;
int ans = 0;
if (Y >= 0) {
ans += (Y + L - 1) / L;
if (X != 0) ans++;
X = abs(X);
ans += (X + L - 1) / L;
}
else {
ans += 2;
X = abs(X);
ans += (X + L - 1) / L;
Y = abs(Y);
ans += (Y + L - 1) / L;
}
cout << ans << endl;
}
dsytk7