結果

問題 No.48 ロボットの操縦
ユーザー LavenderLavender
提出日時 2019-08-31 16:10:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 547 bytes
コンパイル時間 547 ms
コンパイル使用メモリ 65,884 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-03 18:24:42
合計ジャッジ時間 7,168 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 OLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
    int x, y, l, ans=0;
    cin>>x>>y>>l;
    if(x>0&&y>0)ans++;
    if(x<0&&y<0)ans+=3;
    if(y==0||x<0)ans+=2;
    x=abs(x);y=abs(y);
    while(y>l){
        if(y-l>0){
            y-=l;
            cout << "y=" << y << endl;
        }
        if(y<=l){
            ans++;
        }
        ans++;
    }
    while(x>l){
        if(x-l>0){
            x-=l;
        }
        if(x<=l){
            ans++;
        }
        ans++;
    }
    cout<<ans<<endl;
    return 0;
}
0