結果

問題 No.652 E869120 and TimeZone
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-06-05 23:18:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 647 bytes
コンパイル時間 2,233 ms
コンパイル使用メモリ 75,464 KB
実行使用メモリ 54,524 KB
最終ジャッジ日時 2024-06-11 12:29:47
合計ジャッジ時間 6,932 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
53,136 KB
testcase_01 AC 113 ms
53,708 KB
testcase_02 AC 106 ms
53,268 KB
testcase_03 AC 105 ms
53,072 KB
testcase_04 AC 117 ms
54,008 KB
testcase_05 AC 120 ms
54,316 KB
testcase_06 AC 103 ms
52,844 KB
testcase_07 AC 113 ms
54,284 KB
testcase_08 AC 114 ms
54,504 KB
testcase_09 AC 114 ms
54,164 KB
testcase_10 AC 115 ms
54,220 KB
testcase_11 AC 108 ms
53,236 KB
testcase_12 AC 104 ms
53,188 KB
testcase_13 AC 121 ms
53,068 KB
testcase_14 AC 121 ms
53,996 KB
testcase_15 AC 122 ms
54,100 KB
testcase_16 AC 122 ms
54,292 KB
testcase_17 AC 118 ms
54,476 KB
testcase_18 AC 120 ms
54,200 KB
testcase_19 AC 107 ms
53,056 KB
testcase_20 AC 121 ms
54,232 KB
testcase_21 AC 115 ms
52,844 KB
testcase_22 AC 121 ms
54,280 KB
testcase_23 AC 116 ms
54,124 KB
testcase_24 AC 115 ms
54,244 KB
testcase_25 AC 120 ms
54,364 KB
testcase_26 AC 119 ms
54,188 KB
testcase_27 AC 116 ms
54,524 KB
testcase_28 AC 116 ms
54,168 KB
testcase_29 AC 114 ms
54,184 KB
testcase_30 AC 128 ms
54,268 KB
testcase_31 AC 132 ms
54,320 KB
testcase_32 AC 126 ms
54,456 KB
testcase_33 AC 127 ms
54,096 KB
testcase_34 AC 118 ms
54,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigDecimal;
import java.time.LocalTime;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);
        int a = stdin.nextInt();
        int b = stdin.nextInt();
        String s = stdin.next();

        char op = s.charAt(3);
        BigDecimal hour = new BigDecimal(s.substring(4));
        
        long minute = hour.multiply(BigDecimal.valueOf(60)).longValue();
        if (op == '-') {
            minute *= -1;
        }
        LocalTime ans = LocalTime.of(a, b).plusMinutes(minute).minusHours(9);
        System.out.println(ans);
    }
}
0