結果
| 問題 | No.48 ロボットの操縦 |
| コンテスト | |
| ユーザー |
dsytk7
|
| 提出日時 | 2019-07-24 11:29:34 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 544 bytes |
| 記録 | |
| コンパイル時間 | 1,180 ms |
| コンパイル使用メモリ | 179,680 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-03-16 04:16:31 |
| 合計ジャッジ時間 | 2,246 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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 + bool(Y%L);
if (X != 0) ans++;
X = abs(X);
ans += X/L + bool(X%L);
}
else {
ans += 2;
X = abs(X);
ans += X/L + bool(X%L);
Y = abs(Y);
ans += Y/L + bool(Y%L);
}
cout << ans << endl;
}
dsytk7