結果

問題 No.396 クラス替え
ユーザー claw88claw88
提出日時 2016-07-15 23:39:27
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 238 ms / 1,000 ms
コード長 1,730 bytes
コンパイル時間 2,181 ms
コンパイル使用メモリ 102,516 KB
実行使用メモリ 24,816 KB
最終ジャッジ日時 2023-08-11 00:07:31
合計ジャッジ時間 4,108 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
20,736 KB
testcase_01 AC 54 ms
20,636 KB
testcase_02 AC 54 ms
20,856 KB
testcase_03 AC 53 ms
20,704 KB
testcase_04 AC 53 ms
20,696 KB
testcase_05 AC 54 ms
20,724 KB
testcase_06 AC 54 ms
20,816 KB
testcase_07 AC 58 ms
24,816 KB
testcase_08 AC 68 ms
20,692 KB
testcase_09 AC 238 ms
22,772 KB
testcase_10 AC 54 ms
20,848 KB
testcase_11 AC 54 ms
20,680 KB
testcase_12 AC 54 ms
20,740 KB
testcase_13 AC 54 ms
22,740 KB
testcase_14 AC 54 ms
20,784 KB
testcase_15 AC 53 ms
20,684 KB
testcase_16 AC 52 ms
18,784 KB
testcase_17 AC 54 ms
22,772 KB
testcase_18 AC 52 ms
18,688 KB
testcase_19 AC 54 ms
22,768 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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