結果

問題 No.652 E869120 and TimeZone
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-28 16:23:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 953 bytes
コンパイル時間 2,307 ms
コンパイル使用メモリ 76,824 KB
実行使用メモリ 55,172 KB
最終ジャッジ日時 2024-06-01 08:31:01
合計ジャッジ時間 9,457 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 166 ms
42,912 KB
testcase_01 WA -
testcase_02 AC 167 ms
42,284 KB
testcase_03 AC 168 ms
42,672 KB
testcase_04 AC 174 ms
42,532 KB
testcase_05 AC 156 ms
42,404 KB
testcase_06 AC 180 ms
42,800 KB
testcase_07 AC 155 ms
42,428 KB
testcase_08 AC 169 ms
42,708 KB
testcase_09 AC 163 ms
42,248 KB
testcase_10 AC 171 ms
42,828 KB
testcase_11 AC 149 ms
42,128 KB
testcase_12 AC 167 ms
42,560 KB
testcase_13 AC 164 ms
42,420 KB
testcase_14 AC 165 ms
42,836 KB
testcase_15 AC 169 ms
42,892 KB
testcase_16 AC 169 ms
42,548 KB
testcase_17 AC 162 ms
42,596 KB
testcase_18 AC 167 ms
42,364 KB
testcase_19 AC 169 ms
42,628 KB
testcase_20 AC 166 ms
42,920 KB
testcase_21 AC 163 ms
42,752 KB
testcase_22 AC 163 ms
42,632 KB
testcase_23 AC 169 ms
42,728 KB
testcase_24 AC 169 ms
42,516 KB
testcase_25 AC 166 ms
42,288 KB
testcase_26 AC 166 ms
42,492 KB
testcase_27 AC 170 ms
42,548 KB
testcase_28 AC 172 ms
42,768 KB
testcase_29 AC 168 ms
42,832 KB
testcase_30 AC 149 ms
41,936 KB
testcase_31 AC 153 ms
42,180 KB
testcase_32 AC 164 ms
42,600 KB
testcase_33 AC 167 ms
42,692 KB
testcase_34 AC 153 ms
42,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.System.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int h = sc.nextInt();
		int m = sc.nextInt();
		String s = sc.next();
		
		//日本の時刻(分)
		int japan = h*60+m;
		
		//X国の時刻を求める
		//余計な部分を取り除く
		int dif = (int)(Double.parseDouble(s.replaceAll("[UTC+]",""))*60);
		
		//日本時間の9を引いてやることによって、
		//X国の現在時刻が日本とどれだけずれているかが求まる。
		dif = dif-540;
		
		//X国の時刻(分)
		int x = japan+(int)dif;
		
		//以下、これを時と分の表記に直す
		x %= 1440;
		if (x<0) {
			x += 1440;
		}
		int H = x/60;
		int M = x%60;
		
		//直せたので、あとは出力するだけ
		String ans = "";
		if (H < 10) {ans += "0";}
		ans += H + ":";
		if (M < 10) {ans += "0";}
		ans += M;
		out.println(ans);
	}
}
0