結果

問題 No.779 Heisei
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-28 17:45:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 1,000 ms
コード長 519 bytes
コンパイル時間 2,216 ms
コンパイル使用メモリ 77,136 KB
実行使用メモリ 42,700 KB
最終ジャッジ日時 2024-10-02 13:28:22
合計ジャッジ時間 6,922 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 168 ms
42,292 KB
testcase_01 AC 159 ms
42,128 KB
testcase_02 AC 161 ms
42,440 KB
testcase_03 AC 159 ms
42,264 KB
testcase_04 AC 161 ms
42,572 KB
testcase_05 AC 161 ms
42,452 KB
testcase_06 AC 161 ms
42,464 KB
testcase_07 AC 163 ms
42,436 KB
testcase_08 AC 161 ms
42,420 KB
testcase_09 AC 160 ms
42,640 KB
testcase_10 AC 160 ms
42,596 KB
testcase_11 AC 158 ms
42,452 KB
testcase_12 AC 147 ms
42,056 KB
testcase_13 AC 159 ms
42,660 KB
testcase_14 AC 165 ms
42,592 KB
testcase_15 AC 158 ms
42,480 KB
testcase_16 AC 162 ms
42,252 KB
testcase_17 AC 157 ms
42,272 KB
testcase_18 AC 158 ms
42,476 KB
testcase_19 AC 159 ms
42,324 KB
testcase_20 AC 160 ms
42,284 KB
testcase_21 AC 158 ms
42,700 KB
testcase_22 AC 164 ms
42,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int y = sc.nextInt();
    int m = sc.nextInt();
    int d = sc.nextInt();
    String s = "" + y;
    if(m < 10) {
      s += ("0" + m);
    } else {
      s += m;
    }
    if(d < 10) {
      s += ("0" + d);
    } else {
      s += d;
    }
    int sd = Integer.parseInt(s);
    String ans = "No";
    if((sd >= 19890108) && (sd <= 20190430)) ans = "Yes";
    System.out.println(ans);
  }
}
0