結果
問題 |
No.48 ロボットの操縦
|
ユーザー |
|
提出日時 | 2020-04-24 18:10:57 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 541 bytes |
コンパイル時間 | 1,495 ms |
コンパイル使用メモリ | 165,572 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 02:04:34 |
合計ジャッジ時間 | 2,356 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 9 WA * 16 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); i++) typedef long long ll; const int INF = 1000000000; // 10^9 int main() { // ifstream in("data1.txt"); // cin.rdbuf(in.rdbuf()); int X, Y, L; cin >> X >> Y >> L; int ans = 0; if(Y == 0 && X == 0){ cout << 0 << endl; } else if(Y < 0){ ans += 2; } else if(Y == 0 && X != 0){ ans++; } ans += (abs(Y) + L - 1) / L; // x ans += (abs(X) + L - 1) / L; // y cout << ans << endl; }