結果

問題 No.652 E869120 and TimeZone
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-23 23:50:13
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 502 bytes
コンパイル時間 4,016 ms
コンパイル使用メモリ 75,000 KB
実行使用メモリ 41,860 KB
最終ジャッジ日時 2024-05-09 20:10:50
合計ジャッジ時間 9,116 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,488 KB
testcase_01 AC 133 ms
41,664 KB
testcase_02 AC 130 ms
41,860 KB
testcase_03 AC 130 ms
41,436 KB
testcase_04 WA -
testcase_05 AC 132 ms
41,528 KB
testcase_06 AC 133 ms
41,564 KB
testcase_07 AC 130 ms
41,224 KB
testcase_08 AC 134 ms
41,728 KB
testcase_09 AC 134 ms
41,692 KB
testcase_10 AC 134 ms
41,808 KB
testcase_11 AC 133 ms
41,412 KB
testcase_12 AC 125 ms
41,692 KB
testcase_13 WA -
testcase_14 AC 135 ms
41,296 KB
testcase_15 AC 133 ms
41,472 KB
testcase_16 AC 133 ms
41,164 KB
testcase_17 AC 133 ms
41,452 KB
testcase_18 AC 134 ms
41,432 KB
testcase_19 AC 132 ms
41,284 KB
testcase_20 AC 134 ms
41,668 KB
testcase_21 AC 132 ms
41,388 KB
testcase_22 AC 132 ms
41,484 KB
testcase_23 AC 132 ms
41,480 KB
testcase_24 AC 131 ms
41,616 KB
testcase_25 AC 131 ms
41,692 KB
testcase_26 AC 129 ms
41,760 KB
testcase_27 AC 130 ms
41,528 KB
testcase_28 AC 132 ms
41,696 KB
testcase_29 AC 134 ms
41,136 KB
testcase_30 AC 130 ms
41,516 KB
testcase_31 AC 132 ms
41,308 KB
testcase_32 AC 130 ms
41,524 KB
testcase_33 AC 130 ms
41,200 KB
testcase_34 AC 130 ms
41,308 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