結果

問題 No.138 化石のバージョン
ユーザー swdamdr
提出日時 2017-01-25 14:10:54
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 835 bytes
コンパイル時間 1,069 ms
コンパイル使用メモリ 108,712 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-12-23 08:24:07
合計ジャッジ時間 3,466 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19 WA * 14
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;
using System.Collections.Generic;

class Program
{
    static void Main(string[] args)
    {
        int[] ver = Console.ReadLine().Split('.').Select(a => int.Parse(a)).ToArray();
        int[] judge = Console.ReadLine().Split('.').Select(a => int.Parse(a)).ToArray();
        bool b = true;

        if (ver[0] < judge[0])
        {
            b = false;
        }
        else
        {
            if (ver[1] < judge[1])
            {
                b = false;
            }
            else
            {
                if (ver[2] < judge[2])
                {
                    b = false;
                }
            }
        }

        if (b == true)
        {
            Console.WriteLine("YES");
        }
        else
        {
            Console.WriteLine("NO");
        }
    }
}

0