結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー huffman56huffman56
提出日時 2022-12-25 11:02:50
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 1,107 bytes
コンパイル時間 844 ms
コンパイル使用メモリ 103,552 KB
実行使用メモリ 18,560 KB
最終ジャッジ日時 2024-04-29 16:57:35
合計ジャッジ時間 1,984 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
17,536 KB
testcase_01 AC 19 ms
17,664 KB
testcase_02 AC 21 ms
17,536 KB
testcase_03 AC 27 ms
18,176 KB
testcase_04 AC 22 ms
17,664 KB
testcase_05 AC 21 ms
17,792 KB
testcase_06 AC 20 ms
17,536 KB
testcase_07 AC 26 ms
18,304 KB
testcase_08 AC 22 ms
17,408 KB
testcase_09 AC 24 ms
18,432 KB
testcase_10 AC 20 ms
17,408 KB
testcase_11 AC 21 ms
17,536 KB
testcase_12 AC 21 ms
17,664 KB
testcase_13 AC 24 ms
18,432 KB
testcase_14 AC 24 ms
18,304 KB
testcase_15 AC 25 ms
18,560 KB
testcase_16 AC 25 ms
18,176 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace _0446
{
    class Program
    {
        static void Main(string[] args)
        {
            var a = Console.ReadLine();
            var b = Console.ReadLine();

            int x = 0;
            int y = 0;
            var f = false;

            // 文字列が入っていないかをチェック
            if (int.TryParse(a, out x) && int.TryParse(b, out y)) {
                // 0<= a,b <= 12345以内かつ、先頭数値が0ではないか
                if(x >= 0 && x <= 12345 && y >= 0 && y <= 12345)
                {
                    if (a.Length >= 2 && a.StartsWith("0") || b.Length >= 2 && b.StartsWith("0"))
                    {
                        Console.WriteLine("NG");
                    }
                    else
                    {
                        Console.WriteLine("OK");
                    }
                }
                else
                {
                    Console.WriteLine("NG");
                }
            }
            else
            {
                Console.WriteLine("NG");
            }

        }
    }
}
0