結果

問題 No.138 化石のバージョン
ユーザー curryudon08curryudon08
提出日時 2020-06-20 21:52:39
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 30 ms / 5,000 ms
コード長 774 bytes
コンパイル時間 874 ms
コンパイル使用メモリ 113,752 KB
実行使用メモリ 29,444 KB
最終ジャッジ日時 2024-07-03 17:34:50
合計ジャッジ時間 2,996 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
25,156 KB
testcase_01 AC 28 ms
25,152 KB
testcase_02 AC 27 ms
25,392 KB
testcase_03 AC 28 ms
24,892 KB
testcase_04 AC 28 ms
25,028 KB
testcase_05 AC 28 ms
25,152 KB
testcase_06 AC 27 ms
25,132 KB
testcase_07 AC 27 ms
25,284 KB
testcase_08 AC 28 ms
27,148 KB
testcase_09 AC 28 ms
27,064 KB
testcase_10 AC 27 ms
25,280 KB
testcase_11 AC 29 ms
27,192 KB
testcase_12 AC 27 ms
25,152 KB
testcase_13 AC 28 ms
29,444 KB
testcase_14 AC 28 ms
25,388 KB
testcase_15 AC 28 ms
23,224 KB
testcase_16 AC 28 ms
25,228 KB
testcase_17 AC 29 ms
27,144 KB
testcase_18 AC 29 ms
25,280 KB
testcase_19 AC 29 ms
25,276 KB
testcase_20 AC 28 ms
27,276 KB
testcase_21 AC 29 ms
27,148 KB
testcase_22 AC 28 ms
25,024 KB
testcase_23 AC 29 ms
24,980 KB
testcase_24 AC 29 ms
25,228 KB
testcase_25 AC 28 ms
24,884 KB
testcase_26 AC 28 ms
25,096 KB
testcase_27 AC 29 ms
25,140 KB
testcase_28 AC 28 ms
25,132 KB
testcase_29 AC 29 ms
27,280 KB
testcase_30 AC 29 ms
25,136 KB
testcase_31 AC 30 ms
27,140 KB
testcase_32 AC 28 ms
24,884 KB
testcase_33 AC 29 ms
27,412 KB
testcase_34 AC 28 ms
24,976 KB
testcase_35 AC 28 ms
25,280 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.Linq;

namespace _0138
{
    class Program
    {
        static void Main(string[] args)
        {
            var s1 = Console.ReadLine().Split('.').Select(x => int.Parse(x)).ToArray();
            var t1 = string.Format("{0:000}",s1[0]) + string.Format("{0:000}",s1[1]) + string.Format("{0:000}",s1[2]);
            var n1 = int.Parse(t1);

            var s2 = Console.ReadLine().Split('.').Select(x => int.Parse(x)).ToArray();
            var t2 = string.Format("{0:000}",s2[0]) + string.Format("{0:000}",s2[1]) + string.Format("{0:000}",s2[2]);
            var n2 = int.Parse(t2);

            if(n2 <= n1){
                Console.WriteLine("YES");
            }else{
                Console.WriteLine("NO");
            }
        }
    }
}
0