結果

問題 No.779 Heisei
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-12 19:02:03
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 581 bytes
コンパイル時間 2,035 ms
コンパイル使用メモリ 74,588 KB
実行使用メモリ 41,392 KB
最終ジャッジ日時 2024-07-01 19:21:33
合計ジャッジ時間 6,075 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
40,908 KB
testcase_01 AC 128 ms
40,968 KB
testcase_02 AC 116 ms
40,120 KB
testcase_03 AC 116 ms
40,232 KB
testcase_04 WA -
testcase_05 AC 118 ms
40,216 KB
testcase_06 AC 118 ms
40,112 KB
testcase_07 AC 129 ms
40,988 KB
testcase_08 AC 131 ms
41,116 KB
testcase_09 AC 118 ms
40,004 KB
testcase_10 AC 115 ms
40,156 KB
testcase_11 AC 131 ms
41,124 KB
testcase_12 AC 117 ms
39,996 KB
testcase_13 AC 130 ms
41,392 KB
testcase_14 AC 132 ms
40,928 KB
testcase_15 AC 130 ms
41,052 KB
testcase_16 AC 134 ms
40,956 KB
testcase_17 AC 134 ms
40,928 KB
testcase_18 AC 119 ms
39,976 KB
testcase_19 AC 130 ms
40,964 KB
testcase_20 AC 129 ms
41,100 KB
testcase_21 AC 134 ms
41,048 KB
testcase_22 AC 134 ms
40,940 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;
			}
			else if (start[i]==now[i] || now[i]==end[i]) {
				if (i == 2) {
					F = true; break;
				}
			}
			else if (now[i]<start[i] || end[i]<now[i]) {
				break;
			}
		}
		
		System.out.println(F?"Yes":"No");
		
	}
}
0