結果

問題 No.652 E869120 and TimeZone
ユーザー 37zigen37zigen
提出日時 2020-03-19 01:32:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 1,000 ms
コード長 612 bytes
コンパイル時間 2,527 ms
コンパイル使用メモリ 80,456 KB
実行使用メモリ 43,240 KB
最終ジャッジ日時 2024-06-11 12:32:05
合計ジャッジ時間 7,887 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
42,984 KB
testcase_01 AC 143 ms
42,564 KB
testcase_02 AC 146 ms
42,932 KB
testcase_03 AC 141 ms
43,240 KB
testcase_04 AC 140 ms
42,652 KB
testcase_05 AC 143 ms
42,976 KB
testcase_06 AC 140 ms
42,788 KB
testcase_07 AC 146 ms
42,668 KB
testcase_08 AC 128 ms
42,256 KB
testcase_09 AC 142 ms
42,696 KB
testcase_10 AC 162 ms
43,172 KB
testcase_11 AC 144 ms
42,564 KB
testcase_12 AC 143 ms
43,044 KB
testcase_13 AC 147 ms
43,040 KB
testcase_14 AC 148 ms
42,528 KB
testcase_15 AC 137 ms
42,488 KB
testcase_16 AC 142 ms
42,420 KB
testcase_17 AC 132 ms
42,556 KB
testcase_18 AC 131 ms
42,284 KB
testcase_19 AC 139 ms
43,112 KB
testcase_20 AC 140 ms
42,732 KB
testcase_21 AC 143 ms
42,952 KB
testcase_22 AC 153 ms
42,700 KB
testcase_23 AC 151 ms
42,560 KB
testcase_24 AC 139 ms
42,660 KB
testcase_25 AC 144 ms
42,536 KB
testcase_26 AC 165 ms
42,804 KB
testcase_27 AC 154 ms
42,800 KB
testcase_28 AC 150 ms
42,596 KB
testcase_29 AC 144 ms
42,748 KB
testcase_30 AC 139 ms
42,556 KB
testcase_31 AC 131 ms
42,528 KB
testcase_32 AC 154 ms
42,868 KB
testcase_33 AC 130 ms
42,468 KB
testcase_34 AC 133 ms
42,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.Scanner;

class Main {

	public static void main(String[] args) {
		new Main().run();
	}
	
	void run() {
		Scanner sc = new Scanner(System.in);
		int h=sc.nextInt();
		int m=sc.nextInt();
		String str=sc.next();
		str=str.substring(3, str.length());
		int add_m=(int)(Math.round(Double.valueOf(str)*60));
		m+=add_m;
		h=(h+m/60-9+24)%24;
		m%=60;
		if(m<0) {
			m+=60;
			h=(h-1+24)%24;
		}
		System.out.println((h<10?"0":"")+h+":"+(m<10?"0":"")+m);
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0