結果

問題 No.652 E869120 and TimeZone
ユーザー GrenacheGrenache
提出日時 2018-03-04 00:40:24
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

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