結果

問題 No.779 Heisei
ユーザー shinwisteriashinwisteria
提出日時 2019-01-20 22:14:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 1,000 ms
コード長 361 bytes
コンパイル時間 3,703 ms
コンパイル使用メモリ 74,800 KB
実行使用メモリ 54,396 KB
最終ジャッジ日時 2024-11-06 02:37:31
合計ジャッジ時間 7,500 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,136 KB
testcase_01 AC 134 ms
54,280 KB
testcase_02 AC 133 ms
54,036 KB
testcase_03 AC 132 ms
54,196 KB
testcase_04 AC 134 ms
54,040 KB
testcase_05 AC 137 ms
54,004 KB
testcase_06 AC 135 ms
54,148 KB
testcase_07 AC 136 ms
53,968 KB
testcase_08 AC 132 ms
54,120 KB
testcase_09 AC 134 ms
53,968 KB
testcase_10 AC 133 ms
54,120 KB
testcase_11 AC 138 ms
53,992 KB
testcase_12 AC 133 ms
53,996 KB
testcase_13 AC 134 ms
54,396 KB
testcase_14 AC 137 ms
54,352 KB
testcase_15 AC 137 ms
54,316 KB
testcase_16 AC 139 ms
54,236 KB
testcase_17 AC 139 ms
53,888 KB
testcase_18 AC 134 ms
54,184 KB
testcase_19 AC 136 ms
54,008 KB
testcase_20 AC 136 ms
53,832 KB
testcase_21 AC 135 ms
53,852 KB
testcase_22 AC 137 ms
53,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No779 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int Y = s.nextInt(),M = s.nextInt(),D = s.nextInt();
		s.close();

		int total = Y * 10000 + M * 100 + D;
		if(total >= 19890108 && total <= 20190430){
			System.out.println("Yes");
		}else{
			System.out.println("No");
		}

	}

}
0