結果

問題 No.396 クラス替え
ユーザー claw88claw88
提出日時 2016-07-15 23:31:06
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 2,521 bytes
コンパイル時間 842 ms
コンパイル使用メモリ 112,700 KB
実行使用メモリ 31,020 KB
最終ジャッジ日時 2024-04-23 05:07:48
合計ジャッジ時間 3,563 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
31,020 KB
testcase_01 AC 22 ms
23,912 KB
testcase_02 AC 22 ms
24,364 KB
testcase_03 AC 23 ms
21,940 KB
testcase_04 AC 21 ms
24,064 KB
testcase_05 AC 21 ms
24,240 KB
testcase_06 AC 20 ms
21,936 KB
testcase_07 AC 56 ms
25,872 KB
testcase_08 AC 159 ms
24,084 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace yuki0715_C
{
    class Program
    {
        static void Main(string[] args)
        {
            var l1 = getsplit();
            var l2 = getsplit();
            int n = int.Parse(l1[0]);
            int m = int.Parse(l1[1]);
            int x = int.Parse(l2[0]);
            int y = int.Parse(l2[1]);
            int tc = 0;
            int hc = 0;
            string muki = "nobori";


            while (tc==0)
            {
                
                if (muki=="nobori")
                {
                    if (x-m<=0)
                    {
                        tc = x;
                    }
                    else
                    {
                        x -= m;
                    }
                   
                    muki = "kudari";
                }
                else 
                {
                    if (x - m <= 0)
                    {
                        tc = m-x+1;
                    }
                    else
                    {
                        x -= m;
                    }
                   
                    muki = "nobori";
                }
            }

            muki = "nobori";
            while (hc == 0)
            {
              
                if (muki == "nobori")
                {
                   
                    if (y - m <= 0)
                    {
                        hc = y;
                    }
                    else
                    {
                        y -= m;
                    }
                    muki = "kudari";
                }
                else 
                {
                   
                    if (y - m <= 0)
                    {
                        hc = m - y + 1;
                    }
                    else
                    {
                        y -= m;
                    }
                    muki = "nobori";
                }
            }
            
            if (tc == hc)
            {
                Console.WriteLine("YES");
            }
            else
            {
                Console.WriteLine("NO");
            }
        }
        public static string[] getsplit()
        {
            string[] x = Console.ReadLine().Split(' ');
            return x;
        }
        public static int getint()
        {
            int x = int.Parse(Console.ReadLine());
            return x;
        }
    }
}
0