結果

問題 No.138 化石のバージョン
ユーザー しらゆき
提出日時 2015-11-18 13:10:05
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 30 ms / 5,000 ms
コード長 535 bytes
コンパイル時間 845 ms
コンパイル使用メモリ 109,556 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-12-29 13:37:37
合計ジャッジ時間 2,979 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

class Program
{
    static void Main()
    {
        int[] a = Console.ReadLine().Split('.').Select(int.Parse).ToArray();
        int[] b = Console.ReadLine().Split('.').Select(int.Parse).ToArray();

        string ans = "YES";

        if (a[0] < b[0]) ans = "NO";
        else if (a[0]== b[0])
        {
            if(a[1]<b[1])ans = "NO";
            else if (a[1] == b[1])
            {
                if (a[2] < b[2]) ans = "NO";
            }
        }

        Console.WriteLine(ans);
    }
}
0