結果

問題 No.652 E869120 and TimeZone
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-23 23:50:13
言語 Java
(openjdk 23)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 502 bytes
コンパイル時間 3,895 ms
コンパイル使用メモリ 75,744 KB
実行使用メモリ 55,804 KB
最終ジャッジ日時 2024-12-17 13:34:25
合計ジャッジ時間 8,904 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 28 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No652 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		int min = a*60 + b;
		String s = sc.next();
		double utc;
		if(s.charAt(3) == '+') {
			utc = Double.parseDouble(s.substring(4));
		}else {
			utc = Double.parseDouble(s.substring(3));
		}
		min = (int)(min + (utc - 9) * 60) % 1440;
		if(min < 0) {
			min += 1440;
		}
		System.out.printf("%02d:%02d\n",min/60,min%60);
	}
}
0