結果

問題 No.652 E869120 and TimeZone
ユーザー asaka189asaka189
提出日時 2018-02-23 23:01:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 2,329 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 13,184 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-05-09 20:02:47
合計ジャッジ時間 2,493 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
11,392 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 26 ms
11,392 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 28 ms
11,392 KB
testcase_08 WA -
testcase_09 AC 28 ms
11,392 KB
testcase_10 AC 27 ms
11,392 KB
testcase_11 AC 27 ms
11,392 KB
testcase_12 AC 26 ms
11,392 KB
testcase_13 AC 25 ms
11,392 KB
testcase_14 AC 26 ms
11,392 KB
testcase_15 WA -
testcase_16 AC 28 ms
11,392 KB
testcase_17 AC 28 ms
11,392 KB
testcase_18 AC 27 ms
11,392 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 28 ms
11,392 KB
testcase_23 AC 28 ms
11,392 KB
testcase_24 WA -
testcase_25 AC 29 ms
11,264 KB
testcase_26 AC 29 ms
11,392 KB
testcase_27 AC 30 ms
11,392 KB
testcase_28 AC 30 ms
11,392 KB
testcase_29 AC 30 ms
11,520 KB
testcase_30 AC 31 ms
11,392 KB
testcase_31 AC 30 ms
11,264 KB
testcase_32 AC 30 ms
11,264 KB
testcase_33 AC 30 ms
11,392 KB
testcase_34 AC 30 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,s = input().split()
s = s[3:]
s = float(s)
a = int(a)
b = int(b)

if s%1 == 0.0:
	if b >= 10:
		if a+s-9 > 23:
			print('0{0}:{1}'.format(int(a+s-9-24),b))
		elif 23 >= a+s-9 >= 10:
			print('{0}:{1}'.format(int(a+s-9),b))
		elif 0 <= a+s-9 < 10:
			print('0{0}:{1}'.format(int(a+s-9),b))
		else:
			if 24-abs(int(a+s-9)) < 10:
				print('0{0}:{1}'.format(24-abs(int(a+s-9)),b))
			else:
				print('{0}:{1}'.format(24-abs(int(a+s-9)),b))
	else:
		if a+s-9 > 23:
			print('0{0}:0{1}'.format(int(a+s-9-24),b))
		elif 23 >= a+s-9 >= 10:
			print('{0}:0{1}'.format(int(a+s-9),b))
		elif 0 <= a+s-9 < 10:
			print('0{0}:0{1}'.format(int(a+s-9),b))
		else:
			if 24-abs(int(a+s-9)) < 10:
				print('0{0}:0{1}'.format(24-abs(int(a+s-9)),b))
			else:
				print('{0}:0{1}'.format(24-abs(int(a+s-9)),b))
else:
	sur = s%1
	min = int(sur*60+b)
	hour = int(s-sur-9)
	if min >= 60:
		hour += 1
		min += -60
		if min >= 10:
			if a+hour > 23:
				print('{0}:{1}'.format(a+hour-24,min))
			elif 23 >= a+hour >= 10:
				print('{0}:{1}'.format(a+hour,min))
			elif 0 < a+hour < 10:
				print('0{0}:{1}'.format(a+hour,min))
			else:
				if 24-abs(a+hour) < 10:
					print('0{0}:{1}'.format(24-abs(a+hour),min))
				else:
					print('{0}:{1}'.format(24-abs(a+hour),min))
		else:
			if a+hour > 23:
				print('{0}:0{1}'.format(a+hour-24,min))
			elif 23 >= a+hour >= 10:
				print('{0}:0{1}'.format(a+hour,min))
			elif 0 < a+hour < 10:
				print('0{0}:0{1}'.format(a+hour,min))
			else:
				if 24-abs(a+hour) < 10:
					print('0{0}:0{1}'.format(24-abs(a+hour),min))
				else:
					print('{0}:0{1}'.format(24-abs(a+hour),min))
	else:
		if min >= 10:
			if a+hour > 23:
				print('{0}:{1}'.format(a+hour-24,min))
			elif 23 >= a+hour >= 10:
				print('{0}:{1}'.format(a+hour,min))
			elif 0 < a+hour < 10:
				print('0{0}:{1}'.format(a+hour,min))
			else:
				if 24-abs(a+hour) < 10:
					print('0{0}:{1}'.format(24-abs(a+hour),min))
				else:
					print('{0}:{1}'.format(24-abs(a+hour),min))
		else:
			if a+hour > 23:
				print('{0}:0{1}'.format(a+hour-24,min))
			elif 23 >= a+hour >= 10:
				print('{0}:0{1}'.format(a+hour,min))
			elif 0 < a+hour < 10:
				print('0{0}:0{1}'.format(a+hour,min))
			else:
				if 24-abs(a+hour) < 10:
					print('0{0}:0{1}'.format(24-abs(a+hour),min))
				else:
					print('{0}:0{1}'.format(24-abs(a+hour),min))
0