結果

問題 No.779 Heisei
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2019-02-19 21:48:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 256 ms / 1,000 ms
コード長 1,049 bytes
コンパイル時間 3,341 ms
コンパイル使用メモリ 87,604 KB
実行使用メモリ 58,064 KB
最終ジャッジ日時 2024-11-06 05:15:54
合計ジャッジ時間 9,999 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 245 ms
57,360 KB
testcase_01 AC 241 ms
57,380 KB
testcase_02 AC 252 ms
57,868 KB
testcase_03 AC 253 ms
57,700 KB
testcase_04 AC 252 ms
57,748 KB
testcase_05 AC 253 ms
57,172 KB
testcase_06 AC 243 ms
57,728 KB
testcase_07 AC 243 ms
57,392 KB
testcase_08 AC 256 ms
57,652 KB
testcase_09 AC 250 ms
57,476 KB
testcase_10 AC 250 ms
57,184 KB
testcase_11 AC 241 ms
57,204 KB
testcase_12 AC 246 ms
57,192 KB
testcase_13 AC 247 ms
57,780 KB
testcase_14 AC 241 ms
57,640 KB
testcase_15 AC 238 ms
57,392 KB
testcase_16 AC 238 ms
57,360 KB
testcase_17 AC 236 ms
57,288 KB
testcase_18 AC 246 ms
57,980 KB
testcase_19 AC 254 ms
57,264 KB
testcase_20 AC 252 ms
57,332 KB
testcase_21 AC 241 ms
57,440 KB
testcase_22 AC 244 ms
58,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.text.*;

public class Main {

    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int y = sc.nextInt();
        int m = sc.nextInt();
        int d = sc.nextInt();
        solve(y, m, d);
    }
    
    static void solve(int y, int m, int d) throws Exception {
        DateFormat df = new SimpleDateFormat("yyyyMMdd");
        String str = String.format("%04d", y) + String.format("%02d", m) + String.format("%02d", d);
        Calendar target = prepareCalendar(str, df);
        Calendar begin = prepareCalendar("19890108", df);
        Calendar end = prepareCalendar("20190430", df);
        if( !begin.after(target) && !end.before(target) ) {
            System.out.println("Yes");
        } else {
            System.out.println("No");
        }
    }
    
    static Calendar prepareCalendar(String s, DateFormat df) throws Exception {
        Calendar cal = Calendar.getInstance();
        cal.setTime(df.parse(s));
        return cal;
    }
    
}
0