結果

問題 No.779 Heisei
ユーザー tentententen
提出日時 2020-12-09 09:44:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 362 bytes
コンパイル時間 1,759 ms
コンパイル使用メモリ 74,308 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2024-09-19 01:04:01
合計ジャッジ時間 5,095 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
54,032 KB
testcase_01 AC 109 ms
53,928 KB
testcase_02 AC 112 ms
53,928 KB
testcase_03 AC 101 ms
52,964 KB
testcase_04 AC 113 ms
53,872 KB
testcase_05 AC 116 ms
54,108 KB
testcase_06 AC 111 ms
53,960 KB
testcase_07 AC 115 ms
54,180 KB
testcase_08 AC 107 ms
52,620 KB
testcase_09 AC 114 ms
54,272 KB
testcase_10 AC 101 ms
52,780 KB
testcase_11 AC 114 ms
54,140 KB
testcase_12 AC 116 ms
53,904 KB
testcase_13 AC 119 ms
54,004 KB
testcase_14 AC 123 ms
53,844 KB
testcase_15 AC 121 ms
53,988 KB
testcase_16 AC 119 ms
54,164 KB
testcase_17 AC 105 ms
52,652 KB
testcase_18 AC 121 ms
54,300 KB
testcase_19 AC 97 ms
52,704 KB
testcase_20 AC 101 ms
53,104 KB
testcase_21 AC 103 ms
53,092 KB
testcase_22 AC 113 ms
53,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int d = sc.nextInt() * 10000 + sc.nextInt() * 100 + sc.nextInt();
        if (d >= 19890108 && d <= 20190430) {
            System.out.println("Yes");
        } else {
            System.out.println("No");
        }
    }
}
0