Canadian Computing Competition: 2009 Stage 1, Junior #3
A mobile cell service provider in Ottawa broadcasts an automated time standard to its mobile users that reflects the local time at the user's actual location in Canada. This ensures that text messages have a valid local time attached to them.
For example, when it is 1420
in Ottawa on Tuesday February 24, 2009 (specified using military, 24 hour format), the times across the country are shown in the table below:
Pacific Time | Mountain Time | Central Time | Eastern Time | Atlantic Time | Newfoundland Time |
---|---|---|---|---|---|
Victoria, BC Tuesday 2/24/2009 1120 PST |
Edmonton, AB Tuesday 2/24/2009 1220 MST |
Winnipeg, MB Tuesday 2/24/2009 1320 CST |
Toronto, ON Tuesday 2/24/2009 1420 EST |
Halifax, NS Tuesday 2/24/2009 1520 AST |
St. John's, NL Tuesday 2/24/2009 1550 Newfoundland ST |
Write a program that accepts the time in Ottawa in 24 hour format and outputs the local time in each of the cities listed above including Ottawa. You should assume that the input time will be valid (i.e., an integer between 0
and 2359
with the last two digits being between 00
and 59
).
You should note that 2359
is one minute to midnight, midnight is 0
, and 13 minutes after midnight is 13
. You do not need to print leading zeros, and input will not contain any extra leading zeros.
Sample Input
1300
Sample Output
1300 in Ottawa
1000 in Victoria
1100 in Edmonton
1200 in Winnipeg
1300 in Toronto
1400 in Halifax
1430 in St. John's
Comments
well, if you are not good at coding, you can just use if and if else to solve it, because we are just doing the easy math to find out the time
Facts brotha
Hello, does anyone know why my code is wrong for test case 5?
Try the test case '45', and pay attention to St. John's.
Thank you so much!!
Anyone know why the word "Winnipeg," cuts off to "Winnipe"
Output is clipped, so you don't see all of your program's output. Your program is probably outputting "Winnipeg", but you only see "Winnipe". Please join the dmoj discord as it will probably be faster for you to get answers to your questions on there.
Does anyone know why I am getting
WA
on this?Thanks.
EDIT: Nevermind I got it now.
you might want to look at the
NewFoundLand Time
a bit more carefully, see if it follows your logic, this time is special because it doesn't go by an multiple ofhours
, instead it goes by a specific amount ofminutes
, which might have broke your logic and caused you to print some absurd time like14:70
Nevermind I think I got it. It's 24:00 standard (I assumed 12:00).
This comment is hidden due to too much negative feedback. Show it anyway.