結果

問題 No.779 Heisei
ユーザー prog470prog470
提出日時 2019-01-26 15:24:06
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 460 bytes
コンパイル時間 8,854 ms
コンパイル使用メモリ 263,860 KB
実行使用メモリ 64,716 KB
最終ジャッジ日時 2024-07-01 10:57:51
合計ジャッジ時間 31,705 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 905 ms
63,052 KB
testcase_01 AC 909 ms
62,880 KB
testcase_02 AC 900 ms
63,028 KB
testcase_03 AC 914 ms
64,488 KB
testcase_04 AC 907 ms
62,964 KB
testcase_05 AC 922 ms
63,008 KB
testcase_06 AC 917 ms
63,208 KB
testcase_07 AC 910 ms
62,832 KB
testcase_08 AC 892 ms
63,032 KB
testcase_09 AC 914 ms
62,868 KB
testcase_10 AC 913 ms
62,948 KB
testcase_11 AC 917 ms
63,160 KB
testcase_12 AC 914 ms
63,008 KB
testcase_13 AC 911 ms
62,856 KB
testcase_14 AC 911 ms
62,964 KB
testcase_15 AC 889 ms
62,920 KB
testcase_16 WA -
testcase_17 AC 903 ms
63,096 KB
testcase_18 AC 899 ms
63,156 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 907 ms
62,980 KB
testcase_22 AC 887 ms
62,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine

object yuki0779 {
  def main(args: Array[String]): Unit = {
    val ymd = readLine().split(" ").map(_.toInt)

    (ymd(0),ymd(1), ymd(2)) match {
      case (y,m,d) if y == 1989 && ((m >= 1 && d >= 8)  || m <= 2) => println("Yes")
      case (y,m,d) if y == 2019 && ((m <= 4 && d <= 30) || 3 <= m) => println("Yes")
      case (y,_,_) if 1990 <= y && y <= 2018 => println("Yes")
      case (_,_,_)  => println("No")
    }
  }
}
0