#ABC126B. YYMM or MMYY

YYMM or MMYY

题目描述

You have a digit sequence SS of length 44. You are wondering which of the following formats SS 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 SS is valid in only YYMM format, print YYMM; if SS is valid in only MMYY format, print MMYY; if SS is valid in both formats, print AMBIGUOUS; if SS is valid in neither format, print NA.

你有一个长度为 44 的数字序列 SS 。您想知道 SS 是以下哪种格式:

  • YYMM 格式:年份的最后两位数和月份的两位数(例如:"01 "表示一月),按此顺序连接起来
  • MMYY 格式:月份的两位数和年份的最后两位数,按此顺序排列

如果 SS 仅在 YYMM 格式中有效,则打印 YYMM;如果 SS 仅在 MMYY 格式中有效,则打印 MMYY;如果 SS 在两种格式中均有效,则打印 AMBIGUOUS;如果 SS 在两种格式中均无效,则打印 NA

输入格式

输入内容按以下格式标准输入:

SS

输出格式

打印指定字符串:YYMM"、"MMYY"、"AMBIGUOUS "或 "NA"。

样例 #1

样例输入 #1

1905

样例输出 #1

YYMM

样例 #2

样例输入 #2

0112

样例输出 #2

AMBIGUOUS

样例 #3

样例输入 #3

1700

样例输出 #3

NA

说明

数据规模与约定

  • SS 是长度为 44 的数字序列。

样例 11 解释

五月 XX19XX19 是一个有效日期,但 1919 作为月份无效。因此,该字符串仅在 YYMM 格式下有效。

样例 22 解释

12 月 XX01XX01 和 1 月 XX12XX12 都是有效日期。因此,该字符串在两种格式中都有效。

样例 33 解释

001717 都不能作为月份。因此,这个字符串在两种格式中都无效。