結果
| 問題 | 
                            No.48 ロボットの操縦
                             | 
                    
| コンテスト | |
| ユーザー | 
                             funakoshi
                         | 
                    
| 提出日時 | 2019-06-21 13:53:01 | 
| 言語 | C#(csc)  (csc 3.9.0)  | 
                    
| 結果 | 
                             
                                TLE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 3,612 bytes | 
| コンパイル時間 | 2,467 ms | 
| コンパイル使用メモリ | 103,168 KB | 
| 実行使用メモリ | 33,664 KB | 
| 最終ジャッジ日時 | 2024-12-24 18:11:28 | 
| 合計ジャッジ時間 | 8,813 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 19 WA * 5 TLE * 1 | 
コンパイルメッセージ
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;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace yukicoderTest
{
    class Program
    {
        static void Main(string[] args)
        {
            string x = Console.ReadLine();
            string y = Console.ReadLine();
            string l = Console.ReadLine();
            int we = int.Parse(x);
            int ns = int.Parse(y);
            int forward = int.Parse(l);
            int posiwe = 0;
            int posins = 0;
            int cnt = 0;
            if (ns < 0)
            {
                cnt = cnt + 2;
            }
            if (posins != ns)
            {
                if (ns < 0)
                {
                    while (ns < 0)
                    {
                        if (posins == ns)
                        {
                            break;
                        }
                        if ((ns * -1) - (posins * -1) < forward)
                        {
                            posins = ns;
                            cnt++;
                            break;
                        }
                        else
                        {
                            posins = posins - forward;
                            cnt++;
                        }
                    }
                }
                else if (ns > 0) 
                {
                    while (ns > 0)
                    {
                        if(posins==ns)
                        {
                            break;
                        }
                        if (ns - posins < forward)
                        {
                            posins = ns;
                            cnt++;
                            break;
                        }
                        else
                        {
                            posins = posins + forward;
                            cnt++;
                        }
                    }
                }
            }
            if (posiwe != we)
            {
                cnt++;
            }
            if (posiwe != we)
            {
                
                if (we < 0)
                {
                    
                    while (we < 0)
                    {
                        if (posiwe == we)
                        {
                            break;
                        }
                        if ((we * -1) - (posiwe * -1) < forward)
                        {
                            posiwe = we;
                            cnt++;
                            break;
                        }
                        else
                        {
                            posiwe = posiwe - forward;
                            cnt++;
                        }
                    }
                    
                }
                else if (we > 0)
                {
                    while (we > 0)
                    {
                        if (posiwe == we)
                        {
                            break;
                        }
                        if (we - posiwe < forward)
                        {
                            posiwe = we;
                            cnt++;
                            break;
                        }
                        else
                        {
                            posiwe = posiwe + forward;
                            cnt++;
                        }
                    }
                }
            }  
            
            Console.WriteLine(cnt);
        }
    }
}
            
            
            
        
            
funakoshi