結果
問題 |
No.48 ロボットの操縦
|
ユーザー |
|
提出日時 | 2022-05-12 20:59:14 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 314 bytes |
コンパイル時間 | 1,426 ms |
コンパイル使用メモリ | 165,672 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 15:17:57 |
合計ジャッジ時間 | 2,941 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 20 WA * 5 |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ long long int X,Y,L; cin >> X >> Y >> L; long long int ans = 0; ans += (abs(X)+L-1)/L; ans += (abs(Y)+L-1)/L; if(X > 0) ans += 3; else if(X < 0){ if(Y >= 0) ans++; else ans += 2; } else if(Y < 0) ans += 2; cout << ans << endl; }