結果

問題 No.779 Heisei
ユーザー prog470prog470
提出日時 2019-01-26 14:14:10
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 437 bytes
コンパイル時間 10,665 ms
コンパイル使用メモリ 253,740 KB
実行使用メモリ 64,728 KB
最終ジャッジ日時 2024-07-01 10:55:57
合計ジャッジ時間 33,426 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 912 ms
63,144 KB
testcase_01 AC 902 ms
62,928 KB
testcase_02 AC 907 ms
62,932 KB
testcase_03 AC 919 ms
63,120 KB
testcase_04 AC 909 ms
62,876 KB
testcase_05 AC 905 ms
63,032 KB
testcase_06 AC 906 ms
63,044 KB
testcase_07 AC 902 ms
63,100 KB
testcase_08 AC 906 ms
63,020 KB
testcase_09 AC 910 ms
62,864 KB
testcase_10 AC 905 ms
63,184 KB
testcase_11 AC 899 ms
63,188 KB
testcase_12 AC 904 ms
62,892 KB
testcase_13 WA -
testcase_14 AC 919 ms
62,880 KB
testcase_15 AC 911 ms
63,216 KB
testcase_16 WA -
testcase_17 AC 906 ms
63,228 KB
testcase_18 AC 912 ms
62,980 KB
testcase_19 AC 894 ms
63,000 KB
testcase_20 AC 902 ms
62,928 KB
testcase_21 AC 900 ms
62,908 KB
testcase_22 AC 913 ms
62,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine

object SampleLauncher {
  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 >= 4 => println("Yes")
      case (y,m,d) if y == 2019 && m <= 4 && d <= 30 => println("Yes")
      case (y,_,_) if 1990 <= y && y <= 2018 => println("Yes")
      case (_,_,_)  => println("No")
    }
  }
}
0