結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 881 ms
64,388 KB
testcase_01 AC 897 ms
64,584 KB
testcase_02 AC 899 ms
64,396 KB
testcase_03 AC 882 ms
64,432 KB
testcase_04 AC 893 ms
64,532 KB
testcase_05 AC 889 ms
64,556 KB
testcase_06 AC 892 ms
64,388 KB
testcase_07 AC 885 ms
64,552 KB
testcase_08 AC 889 ms
64,512 KB
testcase_09 AC 895 ms
64,360 KB
testcase_10 AC 895 ms
64,508 KB
testcase_11 AC 894 ms
64,472 KB
testcase_12 AC 884 ms
64,268 KB
testcase_13 AC 891 ms
64,416 KB
testcase_14 AC 890 ms
64,408 KB
testcase_15 AC 886 ms
64,444 KB
testcase_16 WA -
testcase_17 AC 898 ms
64,600 KB
testcase_18 AC 892 ms
64,384 KB
testcase_19 AC 885 ms
64,472 KB
testcase_20 AC 895 ms
64,392 KB
testcase_21 AC 893 ms
64,564 KB
testcase_22 AC 899 ms
64,596 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) || m <= 3) => println("Yes")
      case (y,_,_) if 1990 <= y && y <= 2018 => println("Yes")
      case (_,_,_)  => println("No")
    }
  }
}
0