結果
| 問題 |
No.48 ロボットの操縦
|
| コンテスト | |
| ユーザー |
eyeSharp
|
| 提出日時 | 2019-10-10 01:00:29 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 466 bytes |
| コンパイル時間 | 1,376 ms |
| コンパイル使用メモリ | 159,512 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-18 11:11:38 |
| 合計ジャッジ時間 | 2,270 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 25 |
ソースコード
/*
No.48 ロボットの操縦
https://yukicoder.me/problems/no/48
*/
#include <bits/stdc++.h>
using namespace std;
int calc(double x, double l) {
return ceil(abs(x) / l);
}
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
long int dist = 0;
double x, y, l;
cin >> x >> y >> l;
if (x != 0 && y >= 0)
dist += 1;
else if (y < 0)
dist += 2;
dist += calc(x, l) + calc(y, l);
cout << dist << endl;
}
eyeSharp