結果

問題 No.652 E869120 and TimeZone
ユーザー GrenacheGrenache
提出日時 2018-03-04 00:40:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 1,000 ms
コード長 993 bytes
コンパイル時間 3,031 ms
コンパイル使用メモリ 77,924 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-06-11 12:24:31
合計ジャッジ時間 7,837 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,448 KB
testcase_01 AC 109 ms
41,012 KB
testcase_02 AC 112 ms
40,912 KB
testcase_03 AC 113 ms
40,960 KB
testcase_04 AC 106 ms
40,284 KB
testcase_05 AC 110 ms
41,448 KB
testcase_06 AC 113 ms
41,084 KB
testcase_07 AC 96 ms
39,636 KB
testcase_08 AC 107 ms
40,856 KB
testcase_09 AC 103 ms
40,820 KB
testcase_10 AC 102 ms
40,220 KB
testcase_11 AC 121 ms
41,264 KB
testcase_12 AC 114 ms
41,536 KB
testcase_13 AC 108 ms
41,012 KB
testcase_14 AC 115 ms
41,312 KB
testcase_15 AC 107 ms
41,536 KB
testcase_16 AC 112 ms
41,516 KB
testcase_17 AC 106 ms
40,640 KB
testcase_18 AC 106 ms
40,544 KB
testcase_19 AC 114 ms
41,364 KB
testcase_20 AC 109 ms
41,128 KB
testcase_21 AC 112 ms
41,252 KB
testcase_22 AC 112 ms
41,112 KB
testcase_23 AC 113 ms
41,576 KB
testcase_24 AC 109 ms
41,416 KB
testcase_25 AC 109 ms
41,588 KB
testcase_26 AC 102 ms
40,084 KB
testcase_27 AC 119 ms
41,496 KB
testcase_28 AC 109 ms
41,260 KB
testcase_29 AC 107 ms
40,976 KB
testcase_30 AC 104 ms
40,988 KB
testcase_31 AC 112 ms
41,352 KB
testcase_32 AC 99 ms
40,264 KB
testcase_33 AC 108 ms
41,176 KB
testcase_34 AC 105 ms
40,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder652 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int a = sc.nextInt();
		int b = sc.nextInt();
		String s = sc.next();

		int sign = s.charAt(3) == '+' ? 1 : -1;
		int c = s.indexOf('.');
		if (c == -1) {
			c = s.length();
		}
		int tz = Integer.parseInt(s.substring(4, c)) * 10;
		if (c < s.length()) {
			tz += Integer.parseInt(s.substring(c + 1, s.length()));
		}
		tz *= sign;

		a = (a - 9 + 24) % 24;

		int jp = a * 60 + b;
		jp *= 10;

		int sq = (jp + tz * 60 + 60 * 24 * 10) % (60 * 24 * 10);
		sq /= 10;

		pr.printf("%02d:%02d\n", sq / 60, sq % 60);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0