結果

問題 No.138 化石のバージョン
ユーザー the10hoursthe10hours
提出日時 2015-06-11 11:17:47
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,463 bytes
コンパイル時間 886 ms
コンパイル使用メモリ 108,276 KB
実行使用メモリ 28,176 KB
最終ジャッジ日時 2024-07-06 15:33:28
合計ジャッジ時間 2,857 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,076 KB
testcase_01 AC 26 ms
23,852 KB
testcase_02 AC 27 ms
24,216 KB
testcase_03 AC 26 ms
24,084 KB
testcase_04 AC 26 ms
26,004 KB
testcase_05 AC 26 ms
24,212 KB
testcase_06 AC 26 ms
26,004 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 27 ms
26,012 KB
testcase_10 AC 26 ms
23,832 KB
testcase_11 AC 26 ms
26,000 KB
testcase_12 WA -
testcase_13 AC 26 ms
24,084 KB
testcase_14 WA -
testcase_15 AC 26 ms
24,216 KB
testcase_16 AC 26 ms
25,884 KB
testcase_17 AC 26 ms
23,964 KB
testcase_18 AC 25 ms
23,956 KB
testcase_19 AC 26 ms
26,252 KB
testcase_20 AC 26 ms
24,092 KB
testcase_21 AC 26 ms
24,216 KB
testcase_22 AC 27 ms
28,176 KB
testcase_23 AC 26 ms
24,224 KB
testcase_24 AC 26 ms
24,080 KB
testcase_25 AC 26 ms
23,952 KB
testcase_26 AC 25 ms
21,680 KB
testcase_27 AC 25 ms
21,680 KB
testcase_28 AC 25 ms
21,940 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 27 ms
25,744 KB
testcase_33 WA -
testcase_34 AC 26 ms
25,872 KB
testcase_35 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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[] kaseki = new int[3];
            int[] judge = new int[3];
            double ksum = 0,jsum = 0;
            double powten = 1;
            double[] kd = new double[3];
            double[] jd = new double[3];

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

            for (int i = 0; i < 3; i++)
            {
                kd[i] = kaseki[i];
                jd[i] = judge[i];
                for (int j = 1; j < kaseki.Length - i; j++)
                {
                    powten *= 10;
                }
                for (int k = 0; k < kaseki[i].ToString().Length-1; k++)
                {
                    kd[i] = kd[i] / 10;
                }
                for (int m = 0; m < judge[i].ToString().Length - 1; m++)
                {
                    jd[i] = jd[i] / 10;
                }
                ksum += kd[i] * powten;
                jsum += jd[i] * powten;
                powten = 1;
            }
            if (ksum < jsum) Console.WriteLine("NO");
            else Console.WriteLine("YES");
        }
    }
}
0