Broken Clock Codeforces Intel Round-A

来源:互联网 发布:游戏美工需要会什么啊 编辑:程序博客网 时间:2024/06/05 10:38

A. Broken Clock
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

You are given a broken clock. You know, that it is supposed to show time in 12- or 24-hours HH:MM format. In 12-hours format hours change from 1 to 12, while in 24-hours it changes from 0 to 23. In both formats minutes change from 0 to 59.

You are given a time in format HH:MM that is currently displayed on the broken clock. Your goal is to change minimum number of digits in order to make clocks display the correct time in the given format.

For example, if 00:99 is displayed, it is enough to replace the second 9 with 3 in order to get 00:39 that is a correct time in 24-hours format. However, to make 00:99 correct in 12-hours format, one has to change at least two digits. Additionally to the first change one can replace the second 0 with 1 and obtain 01:39.

Input

The first line of the input contains one integer 12 or 24, that denote 12-hours or 24-hours format respectively.

The second line contains the time in format HH:MM, that is currently displayed on the clock. First two characters stand for the hours, while next two show the minutes.

Output

The only line of the output should contain the time in format HH:MM that is a correct time in the given format. It should differ from the original in as few positions as possible. If there are many optimal solutions you can print any of them.

Examples
input
2417:30
output
17:30
input
1217:30
output
07:30
input
2499:99
output
09:09


注意 如果你是通过改十位的话 注意12的时候 50:00 要变成 01:00

code:

<strong>import java.io.*;import java.util.*;public class Main {public static void main(String[] args) {Scanner sc=new Scanner(System.in);while(sc.hasNext()){int n=sc.nextInt();String cur=sc.next();int a=cur.charAt(1)-'0'+10*(cur.charAt(0)-'0');int b=cur.charAt(4)-'0'+10*(cur.charAt(3)-'0');if(n==12){if(a==0){++a;}while(a>12){a=a-10;}while(b>=60){b=b-10;}}else{while(a>23){a=a-10;}while(b>59){b=b-10;}}System.out.printf("%02d:%02d\n",a,b);}}}</strong>


0 0
原创粉丝点击