結果
問題 | No.779 Heisei |
ユーザー |
![]() |
提出日時 | 2019-01-20 16:13:27 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 31 ms / 1,000 ms |
コード長 | 386 bytes |
コンパイル時間 | 3,090 ms |
コンパイル使用メモリ | 110,896 KB |
実行使用メモリ | 27,312 KB |
最終ジャッジ日時 | 2024-11-06 02:37:14 |
合計ジャッジ時間 | 2,537 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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;namespace abc{class ex{static void Main(string[] args){var ss = Console.ReadLine().Split().Select(x => int.Parse(x)).ToArray();var d = new DateTime(ss[0], ss[1], ss[2]);Console.WriteLine(new DateTime(1989, 1, 8) <= d && d <= new DateTime(2019, 4, 30) ? "Yes" : "No");}}}