結果

問題 No.652 E869120 and TimeZone
ユーザー ohagi_1182ohagi_1182
提出日時 2018-02-23 23:46:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 641 bytes
コンパイル時間 2,821 ms
コンパイル使用メモリ 74,788 KB
実行使用メモリ 41,652 KB
最終ジャッジ日時 2024-06-11 12:20:31
合計ジャッジ時間 6,646 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,212 KB
testcase_01 AC 103 ms
40,372 KB
testcase_02 AC 99 ms
39,996 KB
testcase_03 AC 110 ms
41,268 KB
testcase_04 AC 98 ms
39,600 KB
testcase_05 AC 112 ms
41,524 KB
testcase_06 AC 103 ms
39,856 KB
testcase_07 AC 113 ms
41,424 KB
testcase_08 AC 102 ms
40,068 KB
testcase_09 AC 103 ms
40,128 KB
testcase_10 AC 110 ms
41,288 KB
testcase_11 AC 109 ms
41,160 KB
testcase_12 AC 109 ms
41,152 KB
testcase_13 AC 111 ms
40,996 KB
testcase_14 AC 99 ms
39,936 KB
testcase_15 AC 115 ms
41,256 KB
testcase_16 AC 115 ms
41,268 KB
testcase_17 AC 102 ms
40,276 KB
testcase_18 AC 111 ms
40,892 KB
testcase_19 AC 112 ms
41,652 KB
testcase_20 AC 110 ms
41,516 KB
testcase_21 AC 99 ms
40,124 KB
testcase_22 AC 113 ms
41,536 KB
testcase_23 AC 112 ms
40,988 KB
testcase_24 AC 117 ms
41,448 KB
testcase_25 AC 110 ms
41,132 KB
testcase_26 AC 101 ms
40,212 KB
testcase_27 AC 113 ms
41,172 KB
testcase_28 AC 100 ms
40,368 KB
testcase_29 AC 111 ms
41,080 KB
testcase_30 AC 123 ms
41,252 KB
testcase_31 AC 121 ms
41,248 KB
testcase_32 AC 117 ms
41,260 KB
testcase_33 AC 112 ms
41,392 KB
testcase_34 AC 107 ms
40,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		String s = sc.next().substring(3);
		double zisa;
		int allMinute;
		if(s.charAt(0) == '+') {
			zisa = Double.valueOf(s.substring(1)) - 9.0;
			allMinute = (int)(24 * 60 * 60.0 + zisa * 60.0 + a * 60.0 + b * 1.0) % (24 * 60 * 60);
		} else {
			zisa = Double.valueOf(s.substring(1)) + 9.0;
			allMinute = (int)(24 * 60 * 60.0 - zisa * 60.0 + a * 60.0 + b * 1.0) % (24 * 60 * 60);
		}
		System.out.printf("%02d:%02d", allMinute / 60 % 24, allMinute % 60);

	}

}
0