結果

問題 No.652 E869120 and TimeZone
ユーザー YamaKasaYamaKasa
提出日時 2018-09-30 22:17:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 212 ms / 1,000 ms
コード長 1,285 bytes
コンパイル時間 3,127 ms
コンパイル使用メモリ 92,968 KB
実行使用メモリ 57,672 KB
最終ジャッジ日時 2024-06-11 12:28:40
合計ジャッジ時間 10,438 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 194 ms
57,384 KB
testcase_01 AC 212 ms
57,592 KB
testcase_02 AC 192 ms
57,340 KB
testcase_03 AC 205 ms
57,188 KB
testcase_04 AC 193 ms
56,924 KB
testcase_05 AC 202 ms
56,560 KB
testcase_06 AC 204 ms
57,228 KB
testcase_07 AC 194 ms
57,064 KB
testcase_08 AC 195 ms
57,284 KB
testcase_09 AC 204 ms
57,092 KB
testcase_10 AC 196 ms
57,192 KB
testcase_11 AC 199 ms
57,116 KB
testcase_12 AC 201 ms
57,072 KB
testcase_13 AC 186 ms
57,396 KB
testcase_14 AC 191 ms
56,968 KB
testcase_15 AC 187 ms
57,228 KB
testcase_16 AC 194 ms
57,068 KB
testcase_17 AC 205 ms
57,248 KB
testcase_18 AC 201 ms
57,088 KB
testcase_19 AC 193 ms
57,004 KB
testcase_20 AC 200 ms
56,976 KB
testcase_21 AC 188 ms
56,560 KB
testcase_22 AC 194 ms
57,156 KB
testcase_23 AC 207 ms
57,672 KB
testcase_24 AC 199 ms
57,088 KB
testcase_25 AC 189 ms
57,172 KB
testcase_26 AC 203 ms
56,940 KB
testcase_27 AC 193 ms
57,248 KB
testcase_28 AC 201 ms
57,020 KB
testcase_29 AC 200 ms
56,960 KB
testcase_30 AC 189 ms
56,924 KB
testcase_31 AC 203 ms
57,172 KB
testcase_32 AC 199 ms
57,240 KB
testcase_33 AC 194 ms
57,340 KB
testcase_34 AC 193 ms
57,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String h = scan.next();
		String m = scan.next();
		String t = scan.next();
		scan.close();
		int H;
		int M;
		double k;
		if(h.charAt(0) == '0') {
			H = Integer.parseInt(h.substring(1, 2));
		}else {
			H = Integer.parseInt(h.substring(0, 2));
		}
		if(m.charAt(0) == '0') {
			M = Integer.parseInt(m.substring(1, 2));
		}else {
			M = Integer.parseInt(m.substring(0, 2));
		}
		if(t.charAt(4) == '0') {
			k = Double.parseDouble(t.substring(3, t.length()));
		}else {
			k = Double.parseDouble(t.substring(3, t.length()));
		}

		SimpleDateFormat sdf = new SimpleDateFormat("HH:mm");
        Date date = new Date();
        try {
        	String s = H + ":" + M;
        	date = sdf.parse(s);
        }catch(ParseException e) {
            e.printStackTrace();
        }

        int d = (int)Math.round(k * 60) - 540;
        Calendar calendar = Calendar.getInstance();
        calendar.setTime(date);
        calendar.add(Calendar.MINUTE, d);
        Date d1 = calendar.getTime();
        System.out.println(sdf.format(d1));
	}
}
0