結果

問題 No.652 E869120 and TimeZone
ユーザー Freed_0929Freed_0929
提出日時 2018-02-23 22:59:24
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 852 bytes
コンパイル時間 2,390 ms
コンパイル使用メモリ 77,200 KB
実行使用メモリ 57,000 KB
最終ジャッジ日時 2024-12-17 13:25:11
合計ジャッジ時間 8,762 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
54,984 KB
testcase_01 AC 161 ms
54,964 KB
testcase_02 WA -
testcase_03 AC 161 ms
55,160 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 164 ms
54,888 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 160 ms
54,964 KB
testcase_13 AC 157 ms
55,228 KB
testcase_14 AC 156 ms
55,072 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 158 ms
55,196 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 148 ms
54,896 KB
testcase_23 WA -
testcase_24 AC 159 ms
55,208 KB
testcase_25 AC 154 ms
55,076 KB
testcase_26 AC 152 ms
55,180 KB
testcase_27 AC 152 ms
55,236 KB
testcase_28 AC 156 ms
54,904 KB
testcase_29 AC 157 ms
55,340 KB
testcase_30 AC 154 ms
55,120 KB
testcase_31 AC 159 ms
54,784 KB
testcase_32 AC 154 ms
55,072 KB
testcase_33 AC 131 ms
54,788 KB
testcase_34 AC 141 ms
55,008 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