結果
| 問題 | No.48 ロボットの操縦 |
| コンテスト | |
| ユーザー |
test
|
| 提出日時 | 2017-06-10 09:23:02 |
| 言語 | C++11 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
AC
不安定
|
| 実行時間 | 1 ms / 5,000 ms |
| + 350µs | |
| コード長 | 416 bytes |
| 記録 | |
| コンパイル時間 | 282 ms |
| コンパイル使用メモリ | 78,212 KB |
| 実行使用メモリ | 9,792 KB |
| 最終ジャッジ日時 | 2026-09-03 07:31:55 |
| 合計ジャッジ時間 | 1,724 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 25 |
ソースコード
#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){
if(x != 0){
count++;
}
}else{
count= count+2;
}
count = count + abs(y)/l;
if(abs(y)%l != 0){
count++;
}
count = count + abs(x)/l;
if(abs(x)%l != 0){
count++;
}
cout << count << endl;
return 0;
}
test