結果

問題 No.652 E869120 and TimeZone
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-23 22:44:47
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 616 bytes
コンパイル時間 2,452 ms
コンパイル使用メモリ 77,356 KB
実行使用メモリ 43,116 KB
最終ジャッジ日時 2024-05-09 19:58:51
合計ジャッジ時間 9,056 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
42,832 KB
testcase_01 AC 160 ms
42,420 KB
testcase_02 WA -
testcase_03 AC 166 ms
42,952 KB
testcase_04 AC 165 ms
42,716 KB
testcase_05 AC 144 ms
42,768 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 165 ms
42,752 KB
testcase_09 AC 158 ms
42,780 KB
testcase_10 AC 175 ms
42,924 KB
testcase_11 AC 159 ms
42,504 KB
testcase_12 AC 164 ms
42,984 KB
testcase_13 WA -
testcase_14 AC 164 ms
42,612 KB
testcase_15 AC 164 ms
42,728 KB
testcase_16 AC 171 ms
42,620 KB
testcase_17 AC 160 ms
42,928 KB
testcase_18 AC 168 ms
42,504 KB
testcase_19 AC 162 ms
42,436 KB
testcase_20 AC 163 ms
42,828 KB
testcase_21 WA -
testcase_22 AC 160 ms
42,492 KB
testcase_23 AC 161 ms
42,856 KB
testcase_24 AC 167 ms
42,696 KB
testcase_25 AC 159 ms
42,936 KB
testcase_26 AC 165 ms
42,912 KB
testcase_27 AC 164 ms
43,116 KB
testcase_28 AC 158 ms
42,856 KB
testcase_29 AC 165 ms
42,800 KB
testcase_30 AC 156 ms
42,472 KB
testcase_31 AC 165 ms
42,916 KB
testcase_32 AC 158 ms
42,812 KB
testcase_33 AC 164 ms
42,820 KB
testcase_34 AC 157 ms
42,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
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();
		s = s.replaceAll("[UTC+]","");
		double t = Double.parseDouble(s)-9.0;
		//tがマイナスなら時間を戻す。プラスなら進める。
		t *= 60;
		
		int ans = (h*60+m)+(int)t;
		
		if (ans<0) {
			while (ans<0) {
				ans += 1440;
			}
		}
		
		int H = ans/60;
		H %= 24;
		
		int M = ans%60;
		
		String x = "";
		if (H<10) {x+="0";}
		x+=H+":";
		if (M<10) {x+="0";}
		x+=M;
		System.out.println(x);
	}
}
0