結果

問題 No.779 Heisei
ユーザー Hayato-KokubuHayato-Kokubu
提出日時 2019-01-20 16:31:55
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 400 bytes
コンパイル時間 7,987 ms
コンパイル使用メモリ 251,304 KB
実行使用メモリ 64,900 KB
最終ジャッジ日時 2024-07-01 10:27:15
合計ジャッジ時間 31,168 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 923 ms
64,692 KB
testcase_01 AC 918 ms
64,784 KB
testcase_02 AC 925 ms
64,472 KB
testcase_03 WA -
testcase_04 AC 938 ms
64,504 KB
testcase_05 AC 939 ms
64,812 KB
testcase_06 AC 933 ms
64,632 KB
testcase_07 AC 924 ms
64,768 KB
testcase_08 AC 925 ms
64,748 KB
testcase_09 AC 933 ms
64,744 KB
testcase_10 AC 932 ms
64,364 KB
testcase_11 AC 934 ms
64,788 KB
testcase_12 AC 923 ms
64,220 KB
testcase_13 AC 916 ms
64,556 KB
testcase_14 AC 914 ms
64,708 KB
testcase_15 AC 924 ms
64,748 KB
testcase_16 AC 934 ms
64,852 KB
testcase_17 AC 916 ms
64,764 KB
testcase_18 WA -
testcase_19 AC 924 ms
64,400 KB
testcase_20 AC 926 ms
64,900 KB
testcase_21 AC 920 ms
64,812 KB
testcase_22 AC 937 ms
64,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.time.LocalDate
import java.util.Scanner

object Yuki779 {
  val sc = new Scanner(System.in)

  def main(args: Array[String]): Unit ={
    val now = LocalDate.of(sc.nextInt, sc.nextInt, sc.nextInt)

    val HeiseiStart = LocalDate.of(1989, 1, 8)
    val HeiseiEnd = LocalDate.of(2019, 4, 30)

    println(if( (now isAfter HeiseiStart) && (now isBefore HeiseiEnd) ) "Yes" else "No")
  }

}
0