結果

問題 No.652 E869120 and TimeZone
ユーザー Freed_0929Freed_0929
提出日時 2018-02-23 22:59:24
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 852 bytes
コンパイル時間 2,547 ms
コンパイル使用メモリ 77,008 KB
実行使用メモリ 59,092 KB
最終ジャッジ日時 2024-05-09 20:01:48
合計ジャッジ時間 10,412 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 190 ms
42,784 KB
testcase_01 AC 189 ms
43,136 KB
testcase_02 WA -
testcase_03 AC 189 ms
42,896 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 186 ms
43,028 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 187 ms
43,100 KB
testcase_13 AC 189 ms
42,776 KB
testcase_14 AC 190 ms
42,896 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 187 ms
42,840 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 188 ms
42,748 KB
testcase_23 WA -
testcase_24 AC 184 ms
42,768 KB
testcase_25 AC 185 ms
42,992 KB
testcase_26 AC 184 ms
42,940 KB
testcase_27 AC 186 ms
42,716 KB
testcase_28 AC 185 ms
42,888 KB
testcase_29 AC 191 ms
42,588 KB
testcase_30 AC 186 ms
42,744 KB
testcase_31 AC 197 ms
42,748 KB
testcase_32 AC 203 ms
42,676 KB
testcase_33 AC 193 ms
42,792 KB
testcase_34 AC 186 ms
42,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;
import java.util.Deque;
import java.util.ArrayDeque;

public class Main {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        String c = sc.next();
        c = c.replaceAll("UTC", "");
        double C = Double.parseDouble(c);
        C = C - 9;
        a = (int) (a + C * 100 / 100);
        b = (int) (b + (C * 100 % 100) * 0.6);
        if (b < 0) {
            b = 60 + b;
            a = a - 1;
        }
        if (b >= 60) {
            b = b - 60;
            a = a + 1;

        }
        if (a >= 24) {
            a = a - 24;
        }
        if (a < 0) {
            a = a + 24;
        }
        System.out.println(a / 10 + "" + a % 10 + ":" + b / 10 + "" + b % 10 + "");
    }
}
0