結果

問題 No.48 ロボットの操縦
ユーザー tur1n6tur1n6
提出日時 2017-07-29 10:51:22
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 271 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 55,036 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-10 21:29:48
合計ジャッジ時間 1,197 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdlib>

using namespace std;

int main() {
    double X, Y, L; cin >> X >> Y >> L;
    int ans = 0;
    if(X != 0) ans = 1;
    if(Y < 0) ans = 2;
    ans += (abs(X) + L - 1) / L;
    ans += (abs(Y) + L - 1) / L;
    cout << ans << endl;
}
0