結果
| 問題 | No.779 Heisei | 
| コンテスト | |
| ユーザー |  yurara | 
| 提出日時 | 2019-04-10 00:40:33 | 
| 言語 | C#(csc) (csc 3.9.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 30 ms / 1,000 ms | 
| コード長 | 478 bytes | 
| コンパイル時間 | 2,757 ms | 
| コンパイル使用メモリ | 110,388 KB | 
| 実行使用メモリ | 27,420 KB | 
| 最終ジャッジ日時 | 2024-11-06 05:38:01 | 
| 合計ジャッジ時間 | 4,179 ms | 
| ジャッジサーバーID (参考情報) | judge3 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 23 | 
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
using System.Linq;
public class Program
{
    public static void Main()
    {
        var lst = Console.ReadLine().Split(' ').Select(s => int.Parse(s)).ToList();
        var dt = new DateTime(lst[0], lst[1], lst[2]);
        if (dt.CompareTo(new DateTime(1989, 1, 8)) >= 0 
            && dt.CompareTo(new DateTime(2019, 4, 30)) <= 0)
            Console.WriteLine("{0}", "Yes");
        else
            Console.WriteLine("{0}", "No");
        return;
    }
}
            
            
            
        