結果
| 問題 |
No.48 ロボットの操縦
|
| コンテスト | |
| ユーザー |
izryt(趣味)
|
| 提出日時 | 2016-01-16 14:24:18 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 321 bytes |
| コンパイル時間 | 1,270 ms |
| コンパイル使用メモリ | 159,472 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-09-19 19:57:37 |
| 合計ジャッジ時間 | 1,942 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 19 WA * 6 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main()
{
double X, Y, L; cin >> X >> Y >> L;
int ans = 0;
if (X != 0) {
ans++;
ans += (abs(X) + L - 1) / L;
}
if (Y != 0) {
if (X == 0 && Y < 0) ans += 2;
ans += (abs(Y) + L - 1) / L;
}
cout << ans << endl;
}
izryt(趣味)