結果

問題 No.779 Heisei
ユーザー koba-e964koba-e964
提出日時 2021-09-17 01:05:42
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 80 ms / 1,000 ms
コード長 223 bytes
コンパイル時間 459 ms
コンパイル使用メモリ 87,284 KB
実行使用メモリ 71,604 KB
最終ジャッジ日時 2023-09-12 04:17:13
合計ジャッジ時間 3,372 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,348 KB
testcase_01 AC 75 ms
71,056 KB
testcase_02 AC 77 ms
71,604 KB
testcase_03 AC 75 ms
71,352 KB
testcase_04 AC 77 ms
71,316 KB
testcase_05 AC 77 ms
71,316 KB
testcase_06 AC 76 ms
71,456 KB
testcase_07 AC 77 ms
71,156 KB
testcase_08 AC 76 ms
71,528 KB
testcase_09 AC 75 ms
71,196 KB
testcase_10 AC 79 ms
71,300 KB
testcase_11 AC 77 ms
71,556 KB
testcase_12 AC 76 ms
71,264 KB
testcase_13 AC 77 ms
71,448 KB
testcase_14 AC 76 ms
71,296 KB
testcase_15 AC 76 ms
71,060 KB
testcase_16 AC 77 ms
71,216 KB
testcase_17 AC 76 ms
71,056 KB
testcase_18 AC 75 ms
71,200 KB
testcase_19 AC 76 ms
71,296 KB
testcase_20 AC 80 ms
71,224 KB
testcase_21 AC 77 ms
71,208 KB
testcase_22 AC 77 ms
71,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import sys
readline = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

a, b, c = map(int, input().split())
print('Yes' if (a, b, c) >= (1989, 1, 8) and (a, b, c) <= (2019, 4, 30) else 'No')
0