結果

問題 No.138 化石のバージョン
ユーザー PE11PE11
提出日時 2018-02-02 10:55:53
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 31 ms / 5,000 ms
コード長 664 bytes
コンパイル時間 975 ms
コンパイル使用メモリ 112,084 KB
実行使用メモリ 27,908 KB
最終ジャッジ日時 2024-06-09 21:25:50
合計ジャッジ時間 3,002 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
25,900 KB
testcase_01 AC 29 ms
25,896 KB
testcase_02 AC 29 ms
23,220 KB
testcase_03 AC 30 ms
25,388 KB
testcase_04 AC 29 ms
25,516 KB
testcase_05 AC 30 ms
27,520 KB
testcase_06 AC 29 ms
25,644 KB
testcase_07 AC 29 ms
25,772 KB
testcase_08 AC 30 ms
25,772 KB
testcase_09 AC 29 ms
23,732 KB
testcase_10 AC 29 ms
25,768 KB
testcase_11 AC 29 ms
23,480 KB
testcase_12 AC 30 ms
25,488 KB
testcase_13 AC 29 ms
27,780 KB
testcase_14 AC 28 ms
25,768 KB
testcase_15 AC 29 ms
27,784 KB
testcase_16 AC 28 ms
25,516 KB
testcase_17 AC 29 ms
25,512 KB
testcase_18 AC 29 ms
25,484 KB
testcase_19 AC 31 ms
25,644 KB
testcase_20 AC 28 ms
25,516 KB
testcase_21 AC 30 ms
26,000 KB
testcase_22 AC 29 ms
27,524 KB
testcase_23 AC 28 ms
23,732 KB
testcase_24 AC 29 ms
25,640 KB
testcase_25 AC 30 ms
27,656 KB
testcase_26 AC 29 ms
27,908 KB
testcase_27 AC 30 ms
27,520 KB
testcase_28 AC 30 ms
25,732 KB
testcase_29 AC 30 ms
27,780 KB
testcase_30 AC 29 ms
25,896 KB
testcase_31 AC 29 ms
27,680 KB
testcase_32 AC 29 ms
25,744 KB
testcase_33 AC 31 ms
25,648 KB
testcase_34 AC 29 ms
27,528 KB
testcase_35 AC 28 ms
25,352 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;

class Program
{
	static void Main(string[] args)
	{
		No138.Proc();
	}
}

public class No138
{
	public static void Proc()
	{
		var OldVersion = Console.ReadLine().Split('.').Select(x => Convert.ToInt32(x)).ToList<int>();
		var Version = Console.ReadLine().Split('.').Select(x => Convert.ToInt32(x)).ToList<int>();

		if(System.Math.Pow(10,8) * OldVersion[0] + System.Math.Pow(10,4) * OldVersion[1]  + OldVersion[2]   >= System.Math.Pow(10,8) * Version[0] + System.Math.Pow(10,4) * Version[1]  + Version[2])
			Console.WriteLine("YES");
		else
			Console.WriteLine("NO");
	}
}

0