結果

問題 No.652 E869120 and TimeZone
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-23 23:50:13
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,080 KB
testcase_01 AC 131 ms
54,228 KB
testcase_02 AC 130 ms
53,912 KB
testcase_03 AC 128 ms
54,044 KB
testcase_04 WA -
testcase_05 AC 137 ms
54,028 KB
testcase_06 AC 121 ms
53,132 KB
testcase_07 AC 133 ms
53,984 KB
testcase_08 AC 130 ms
53,964 KB
testcase_09 AC 133 ms
53,932 KB
testcase_10 AC 136 ms
54,168 KB
testcase_11 AC 142 ms
54,092 KB
testcase_12 AC 142 ms
54,228 KB
testcase_13 WA -
testcase_14 AC 136 ms
54,080 KB
testcase_15 AC 136 ms
54,184 KB
testcase_16 AC 133 ms
53,960 KB
testcase_17 AC 129 ms
54,184 KB
testcase_18 AC 139 ms
54,152 KB
testcase_19 AC 134 ms
54,320 KB
testcase_20 AC 130 ms
53,972 KB
testcase_21 AC 113 ms
54,040 KB
testcase_22 AC 136 ms
54,304 KB
testcase_23 AC 130 ms
53,900 KB
testcase_24 AC 133 ms
54,020 KB
testcase_25 AC 130 ms
54,092 KB
testcase_26 AC 132 ms
54,084 KB
testcase_27 AC 133 ms
54,052 KB
testcase_28 AC 128 ms
54,176 KB
testcase_29 AC 134 ms
54,152 KB
testcase_30 AC 133 ms
55,804 KB
testcase_31 AC 132 ms
54,256 KB
testcase_32 AC 137 ms
54,280 KB
testcase_33 AC 134 ms
54,284 KB
testcase_34 AC 132 ms
54,100 KB
権限があれば一括ダウンロードができます

ソースコード

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