結果

問題 No.138 化石のバージョン
ユーザー huffman56huffman56
提出日時 2022-07-10 10:21:39
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 766 bytes
コンパイル時間 1,025 ms
コンパイル使用メモリ 105,472 KB
実行使用メモリ 27,260 KB
最終ジャッジ日時 2024-06-10 20:23:02
合計ジャッジ時間 3,083 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
24,880 KB
testcase_01 AC 28 ms
24,876 KB
testcase_02 WA -
testcase_03 AC 28 ms
24,880 KB
testcase_04 AC 28 ms
26,996 KB
testcase_05 AC 28 ms
27,136 KB
testcase_06 AC 27 ms
24,992 KB
testcase_07 AC 27 ms
24,884 KB
testcase_08 AC 28 ms
24,872 KB
testcase_09 AC 27 ms
27,252 KB
testcase_10 AC 28 ms
24,996 KB
testcase_11 AC 28 ms
24,968 KB
testcase_12 AC 27 ms
24,868 KB
testcase_13 AC 27 ms
25,260 KB
testcase_14 AC 26 ms
22,964 KB
testcase_15 AC 27 ms
27,000 KB
testcase_16 AC 28 ms
27,128 KB
testcase_17 AC 27 ms
25,256 KB
testcase_18 AC 28 ms
25,132 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 27 ms
24,824 KB
testcase_22 AC 27 ms
25,124 KB
testcase_23 WA -
testcase_24 AC 28 ms
26,988 KB
testcase_25 AC 28 ms
25,120 KB
testcase_26 AC 28 ms
24,868 KB
testcase_27 AC 29 ms
24,996 KB
testcase_28 AC 28 ms
26,904 KB
testcase_29 AC 29 ms
26,872 KB
testcase_30 AC 26 ms
24,992 KB
testcase_31 AC 28 ms
24,864 KB
testcase_32 AC 28 ms
24,956 KB
testcase_33 AC 28 ms
27,128 KB
testcase_34 AC 28 ms
24,972 KB
testcase_35 AC 28 ms
25,000 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;

namespace SortItems
{
    class Program
    {
        static void Main(string[] args)
        {
            var a = Console.ReadLine().Split('.').Select(int.Parse).ToList();
            var b = Console.ReadLine().Split('.').Select(int.Parse).ToList();


            if (a[0] < b[0])
            {
                Console.WriteLine("NO");
                return;
            }
            else
            {
                for (var i = 0; i < 3; i++)
                {
                    if (a[i] >= b[i])
                    {
                        Console.WriteLine("YES"); return;
                    }

                }
            }

            Console.WriteLine("NO");
        }
    }
}
0