結果
問題 | No.48 ロボットの操縦 |
ユーザー | 明智重蔵 |
提出日時 | 2015-10-31 20:04:56 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,973 bytes |
コンパイル時間 | 873 ms |
コンパイル使用メモリ | 111,724 KB |
実行使用メモリ | 25,812 KB |
最終ジャッジ日時 | 2024-09-13 06:30:46 |
合計ジャッジ時間 | 2,396 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
23,964 KB |
testcase_01 | AC | 24 ms
23,964 KB |
testcase_02 | WA | - |
testcase_03 | AC | 25 ms
23,772 KB |
testcase_04 | AC | 24 ms
23,712 KB |
testcase_05 | AC | 24 ms
25,812 KB |
testcase_06 | AC | 25 ms
23,836 KB |
testcase_07 | AC | 25 ms
23,836 KB |
testcase_08 | AC | 25 ms
23,728 KB |
testcase_09 | AC | 25 ms
25,564 KB |
testcase_10 | AC | 24 ms
23,836 KB |
testcase_11 | AC | 24 ms
23,964 KB |
testcase_12 | AC | 24 ms
21,692 KB |
testcase_13 | AC | 24 ms
21,948 KB |
testcase_14 | AC | 24 ms
23,712 KB |
testcase_15 | AC | 25 ms
23,988 KB |
testcase_16 | AC | 25 ms
23,832 KB |
testcase_17 | AC | 24 ms
21,416 KB |
testcase_18 | AC | 25 ms
24,032 KB |
testcase_19 | AC | 24 ms
21,816 KB |
testcase_20 | AC | 24 ms
23,712 KB |
testcase_21 | AC | 25 ms
23,768 KB |
testcase_22 | AC | 25 ms
23,768 KB |
testcase_23 | AC | 25 ms
23,836 KB |
testcase_24 | AC | 25 ms
23,836 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; class Program { static string InputPattern = "InputX"; static List<string> GetInputList() { var WillReturn = new List<string>(); if (InputPattern == "Input1") { WillReturn.Add("0"); WillReturn.Add("2"); WillReturn.Add("1"); //2 //座標(0,0)から(0,2)へ移動させます。1回の前進あたり1距離進むことができます。 //初期状態で北を向いているため、向きを変えずに前進命令を2回行うことで到達できます。 } else if (InputPattern == "Input2") { WillReturn.Add("-7"); WillReturn.Add("15"); WillReturn.Add("7"); //5 //北向きに7距離の前進を2回、1距離の前進を1回行い、 //反時計回りに90度回転した後、7距離の前進を1回行います。 //合計5回の命令で到達できます。 } else { string wkStr; while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr); } return WillReturn; } static void Main() { List<string> InputList = GetInputList(); int X = int.Parse(InputList[0]); int Y = int.Parse(InputList[1]); int L = int.Parse(InputList[2]); int SousaCnt = 0; //移動先のY座標がマイナスだったら回転が一回必要 if (Y < 0) SousaCnt++; //Y座標に移動 int AbsY = Math.Abs(Y); if (AbsY > 0) { SousaCnt += AbsY / L; if (AbsY % L > 0) SousaCnt++; } //X座標に移動 int AbsX = Math.Abs(X); if (AbsX > 0) { SousaCnt++; //X座標の移動用の回転 SousaCnt += AbsX / L; if (AbsX % L > 0) SousaCnt++; } Console.WriteLine(SousaCnt); } }