結果

問題 No.652 E869120 and TimeZone
ユーザー YamaKasaYamaKasa
提出日時 2018-09-30 22:01:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 843 bytes
コンパイル時間 2,706 ms
コンパイル使用メモリ 78,272 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-06-11 12:28:14
合計ジャッジ時間 7,020 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,932 KB
testcase_01 AC 116 ms
54,156 KB
testcase_02 AC 114 ms
54,180 KB
testcase_03 AC 118 ms
53,836 KB
testcase_04 AC 116 ms
53,664 KB
testcase_05 AC 116 ms
54,220 KB
testcase_06 AC 108 ms
52,956 KB
testcase_07 AC 121 ms
53,856 KB
testcase_08 AC 121 ms
54,304 KB
testcase_09 AC 116 ms
54,076 KB
testcase_10 AC 115 ms
53,832 KB
testcase_11 AC 117 ms
53,924 KB
testcase_12 AC 112 ms
53,892 KB
testcase_13 AC 112 ms
53,956 KB
testcase_14 AC 104 ms
53,120 KB
testcase_15 AC 115 ms
53,740 KB
testcase_16 AC 117 ms
54,140 KB
testcase_17 AC 112 ms
53,828 KB
testcase_18 AC 107 ms
54,064 KB
testcase_19 AC 114 ms
54,120 KB
testcase_20 AC 126 ms
54,080 KB
testcase_21 AC 115 ms
54,088 KB
testcase_22 AC 120 ms
53,056 KB
testcase_23 AC 120 ms
53,960 KB
testcase_24 AC 125 ms
53,876 KB
testcase_25 AC 123 ms
53,996 KB
testcase_26 AC 106 ms
52,880 KB
testcase_27 AC 113 ms
54,140 KB
testcase_28 AC 104 ms
53,068 KB
testcase_29 AC 114 ms
53,844 KB
testcase_30 AC 125 ms
53,972 KB
testcase_31 AC 118 ms
53,892 KB
testcase_32 AC 105 ms
53,004 KB
testcase_33 AC 111 ms
54,244 KB
testcase_34 AC 116 ms
53,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String h = scan.next();
		String m = scan.next();
		String t = scan.next();
		scan.close();
		int H;
		int M;
		double k;
		if(h.charAt(0) == '0') {
			H = Integer.parseInt(h.substring(1, 2));
		}else {
			H = Integer.parseInt(h.substring(0, 2));
		}
		if(m.charAt(0) == '0') {
			M = Integer.parseInt(m.substring(1, 2));
		}else {
			M = Integer.parseInt(m.substring(0, 2));
		}
		if(t.charAt(4) == '0') {
			k = Double.parseDouble(t.substring(3, t.length()));
		}else {
			k = Double.parseDouble(t.substring(3, t.length()));
		}

		//System.out.println(H +" " + M +" " + k);

		int e = H * 60 + M - 540 + 1440 * 2 + (int)Math.round(k * 60);
		e = e % 1440;
		System.out.printf("%02d:%02d\n", e/60, e%60);
	}
}
0