結果

問題 No.779 Heisei
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-12 18:55:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 464 bytes
コンパイル時間 2,360 ms
コンパイル使用メモリ 74,160 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-09-13 09:45:33
合計ジャッジ時間 6,462 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,968 KB
testcase_01 AC 134 ms
53,936 KB
testcase_02 AC 132 ms
54,000 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 134 ms
54,068 KB
testcase_06 AC 134 ms
54,392 KB
testcase_07 AC 133 ms
54,348 KB
testcase_08 AC 128 ms
54,084 KB
testcase_09 AC 134 ms
54,104 KB
testcase_10 AC 134 ms
54,216 KB
testcase_11 AC 133 ms
53,900 KB
testcase_12 AC 133 ms
53,940 KB
testcase_13 AC 131 ms
53,840 KB
testcase_14 AC 132 ms
53,880 KB
testcase_15 AC 131 ms
54,016 KB
testcase_16 AC 134 ms
53,952 KB
testcase_17 AC 138 ms
53,860 KB
testcase_18 WA -
testcase_19 AC 134 ms
53,752 KB
testcase_20 AC 133 ms
53,780 KB
testcase_21 AC 135 ms
54,316 KB
testcase_22 AC 136 ms
53,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		int[] start = {1989, 1, 8};
		int[] end = {2019, 4, 30};
		int[] now = {sc.nextInt(), sc.nextInt(), sc.nextInt()};
		
		boolean F = false;
		for (int i=0; i<3; i++) {
			if (start[i]<now[i] && now[i]<end[i]) {
				F = true; break;
			}
			if (now[i]<start[i] || end[i]<now[i]) break;
		}
		
		System.out.println(F?"Yes":"No");
		
	}
}
0