結果

問題 No.384 マス埋めゲーム2
ユーザー claw88claw88
提出日時 2016-07-15 23:41:44
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 1,730 bytes
コンパイル時間 971 ms
コンパイル使用メモリ 110,816 KB
実行使用メモリ 27,604 KB
最終ジャッジ日時 2024-04-23 05:08:49
合計ジャッジ時間 2,312 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;
            


            while (true)
            {
                if (x - m <= 0)
                {
                    tc = x;
                    break;
                }
                x -= m;
                
                if (x - m <= 0)
                {
                    tc = m - x + 1;
                    break;
                }
                x -= m;
            }

        
            while (true)
            {
                if (y - m <= 0)
                {
                    hc = y;
                    break;
                }
                y -= m;
                if (y - m <= 0)
                {
                    hc = m - y + 1;
                    break;
                }
                y -= m;                 
            }
            
            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