結果
| 問題 |
No.48 ロボットの操縦
|
| コンテスト | |
| ユーザー |
test
|
| 提出日時 | 2017-06-10 09:11:09 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 402 bytes |
| コンパイル時間 | 561 ms |
| コンパイル使用メモリ | 58,536 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-09-24 15:24:46 |
| 合計ジャッジ時間 | 1,377 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 19 WA * 6 |
ソースコード
#include <iostream>
#include <string>
#include <cmath>
#include <cstdlib>
using namespace std;
int main() {
int x, y, l, count=0;
cin >> x >> y >> l;
if(y < 0){
count= count + 2;
}
count = count + abs(y)/l;
if(abs(y)%l != 0){
count++;
}
if(x != 0){
count++;
}
count = count + abs(x)/l;
if(abs(x)%l != 0){
count++;
}
cout << count << endl;
return 0;
}
test