結果

問題 No.779 Heisei
ユーザー koba-e964
提出日時 2021-09-17 01:05:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 223 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 53,360 KB
最終ジャッジ日時 2024-06-29 17:18:39
合計ジャッジ時間 1,587 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

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