結果

問題 No.652 E869120 and TimeZone
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-06-12 01:52:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 800 bytes
コンパイル時間 4,129 ms
コンパイル使用メモリ 79,472 KB
実行使用メモリ 55,236 KB
最終ジャッジ日時 2024-06-30 13:49:29
合計ジャッジ時間 10,196 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
42,124 KB
testcase_01 AC 148 ms
42,316 KB
testcase_02 WA -
testcase_03 AC 142 ms
42,464 KB
testcase_04 AC 151 ms
42,524 KB
testcase_05 AC 154 ms
42,484 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 140 ms
42,524 KB
testcase_09 AC 151 ms
42,388 KB
testcase_10 AC 147 ms
42,448 KB
testcase_11 AC 135 ms
41,944 KB
testcase_12 AC 140 ms
42,236 KB
testcase_13 WA -
testcase_14 AC 148 ms
42,368 KB
testcase_15 AC 146 ms
42,384 KB
testcase_16 AC 144 ms
42,624 KB
testcase_17 AC 153 ms
42,340 KB
testcase_18 AC 150 ms
42,288 KB
testcase_19 AC 143 ms
42,476 KB
testcase_20 AC 153 ms
42,272 KB
testcase_21 WA -
testcase_22 AC 155 ms
42,408 KB
testcase_23 AC 151 ms
42,316 KB
testcase_24 AC 156 ms
42,572 KB
testcase_25 AC 141 ms
42,068 KB
testcase_26 AC 157 ms
42,528 KB
testcase_27 AC 154 ms
42,364 KB
testcase_28 AC 139 ms
41,932 KB
testcase_29 AC 151 ms
42,476 KB
testcase_30 AC 142 ms
41,960 KB
testcase_31 AC 150 ms
42,556 KB
testcase_32 AC 160 ms
42,188 KB
testcase_33 AC 158 ms
42,268 KB
testcase_34 AC 157 ms
42,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No652{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		int a = sc.nextInt();
		int b = sc.nextInt();
		String xx = sc.next();
		if(!xx.contains(".")){
			xx.concat(".0");
		}
		double x;
		if(xx.contains("+")){
			x = Double.parseDouble(xx.substring(4));
		}else{
			x = -Double.parseDouble(xx.substring(4));
		}
		double diff = x - 9.0;
		int a_diff = (int)((diff*60)/60);
		int b_diff = (int)((diff*60)%60);

		int a_new = a + a_diff;
		int b_new = b + b_diff;
		if(b_new >= 60){
			b_new -= 60;
			a_new += 1;
		}else if(b_new < 0){
			b_new += 60;
			a_new -= 1;
		}
		if(a_new >= 24) a_new -= 24;
		else if(a_new < 0) a_new += 24;

		System.out.println(String.format("%02d", a_new) + ":" + String.format("%02d", b_new));
	}
}
0