結果

問題 No.138 化石のバージョン
ユーザー the10hoursthe10hours
提出日時 2015-06-11 11:42:16
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 22 ms / 5,000 ms
コード長 1,213 bytes
コンパイル時間 963 ms
コンパイル使用メモリ 112,328 KB
実行使用メモリ 26,128 KB
最終ジャッジ日時 2024-06-09 08:46:03
合計ジャッジ時間 2,268 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
24,064 KB
testcase_01 AC 21 ms
21,860 KB
testcase_02 AC 21 ms
23,904 KB
testcase_03 AC 20 ms
23,768 KB
testcase_04 AC 21 ms
23,836 KB
testcase_05 AC 21 ms
26,004 KB
testcase_06 AC 20 ms
25,880 KB
testcase_07 AC 20 ms
23,776 KB
testcase_08 AC 20 ms
25,876 KB
testcase_09 AC 19 ms
23,896 KB
testcase_10 AC 20 ms
24,028 KB
testcase_11 AC 20 ms
24,112 KB
testcase_12 AC 19 ms
23,900 KB
testcase_13 AC 19 ms
24,052 KB
testcase_14 AC 20 ms
23,900 KB
testcase_15 AC 20 ms
23,644 KB
testcase_16 AC 20 ms
23,704 KB
testcase_17 AC 20 ms
26,108 KB
testcase_18 AC 20 ms
25,944 KB
testcase_19 AC 22 ms
26,076 KB
testcase_20 AC 21 ms
25,940 KB
testcase_21 AC 20 ms
23,776 KB
testcase_22 AC 21 ms
26,112 KB
testcase_23 AC 21 ms
24,028 KB
testcase_24 AC 21 ms
23,984 KB
testcase_25 AC 22 ms
26,128 KB
testcase_26 AC 19 ms
21,900 KB
testcase_27 AC 20 ms
25,876 KB
testcase_28 AC 21 ms
24,112 KB
testcase_29 AC 21 ms
23,804 KB
testcase_30 AC 21 ms
23,768 KB
testcase_31 AC 21 ms
25,988 KB
testcase_32 AC 21 ms
26,004 KB
testcase_33 AC 21 ms
23,768 KB
testcase_34 AC 21 ms
23,772 KB
testcase_35 AC 21 ms
24,188 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;
using System.Text;

namespace yukicoder
{
    class yc
    {
        static void Main()
        {
            string[] str1 = Console.ReadLine().Split('.');
            string[] str2 = Console.ReadLine().Split('.');
            int[] num1 = new int[3];
            int[] num2 = new int[3];
            bool end = false;

            for (int i = 0; i < 3; i++)
            {
                num1[i] = int.Parse(str1[i]);
                num2[i] = int.Parse(str2[i]);
            }

            if (num1[0] == num2[0] & num1[1] == num2[1] & num1[2] == num2[2])
            {
                Console.WriteLine("YES");
                end = true;
            }

            if (!end)
            {
                for (int i = 0; i < 3; i++)
                {
                    if (num1[i] > num2[i])
                    {
                        Console.WriteLine("YES");
                        break;
                    }
                    else if (num1[i] < num2[i])
                    {
                        Console.WriteLine("NO");
                        break;
                    }
                }
            }
        }
    }
}
0