#ABC126B. YYMM or MMYY
YYMM or MMYY
题目描述
You have a digit sequence of length . You are wondering which of the following formats is in:
- YYMM format: the last two digits of the year and the two-digit representation of the month (example:
01
for January), concatenated in this order - MMYY format: the two-digit representation of the month and the last two digits of the year, concatenated in this order
If is valid in only YYMM format, print YYMM
; if is valid in only MMYY format, print MMYY
; if is valid in both formats, print AMBIGUOUS
; if is valid in neither format, print NA
.
你有一个长度为 的数字序列 。您想知道 是以下哪种格式:
- YYMM 格式:年份的最后两位数和月份的两位数(例如:"01 "表示一月),按此顺序连接起来
- MMYY 格式:月份的两位数和年份的最后两位数,按此顺序排列
如果 仅在 YYMM 格式中有效,则打印
YYMM
;如果 仅在 MMYY 格式中有效,则打印MMYY
;如果 在两种格式中均有效,则打印AMBIGUOUS
;如果 在两种格式中均无效,则打印NA
。
输入格式
输入内容按以下格式标准输入:
输出格式
打印指定字符串:YYMM"、"MMYY"、"AMBIGUOUS "或 "NA"。
样例 #1
样例输入 #1
1905
样例输出 #1
YYMM
样例 #2
样例输入 #2
0112
样例输出 #2
AMBIGUOUS
样例 #3
样例输入 #3
1700
样例输出 #3
NA
说明
数据规模与约定
- 是长度为 的数字序列。
样例 解释
五月 是一个有效日期,但 作为月份无效。因此,该字符串仅在 YYMM 格式下有效。
样例 解释
12 月 和 1 月 都是有效日期。因此,该字符串在两种格式中都有效。
样例 解释
和 都不能作为月份。因此,这个字符串在两种格式中都无效。