結果

問題 No.779 Heisei
ユーザー prog470prog470
提出日時 2019-01-26 14:16:34
言語 Scala(Beta)
(3.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 437 bytes
コンパイル時間 11,746 ms
コンパイル使用メモリ 259,756 KB
実行使用メモリ 64,752 KB
最終ジャッジ日時 2024-07-01 10:56:36
合計ジャッジ時間 31,124 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 898 ms
64,744 KB
testcase_01 AC 903 ms
64,608 KB
testcase_02 AC 902 ms
64,472 KB
testcase_03 AC 906 ms
64,456 KB
testcase_04 AC 903 ms
64,404 KB
testcase_05 AC 901 ms
64,372 KB
testcase_06 WA -
testcase_07 AC 910 ms
64,400 KB
testcase_08 AC 909 ms
64,600 KB
testcase_09 AC 910 ms
64,744 KB
testcase_10 AC 922 ms
64,424 KB
testcase_11 AC 921 ms
64,700 KB
testcase_12 AC 910 ms
64,620 KB
testcase_13 WA -
testcase_14 AC 916 ms
64,596 KB
testcase_15 AC 921 ms
64,732 KB
testcase_16 AC 910 ms
64,476 KB
testcase_17 AC 914 ms
64,380 KB
testcase_18 AC 910 ms
64,752 KB
testcase_19 AC 915 ms
64,612 KB
testcase_20 AC 909 ms
64,612 KB
testcase_21 AC 906 ms
64,516 KB
testcase_22 AC 905 ms
64,748 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 >= 8 => 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