結果

問題 No.652 E869120 and TimeZone
ユーザー fal_rndfal_rnd
提出日時 2018-02-27 00:29:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 331 bytes
コンパイル時間 2,201 ms
コンパイル使用メモリ 85,468 KB
実行使用メモリ 54,540 KB
最終ジャッジ日時 2024-06-11 12:23:04
合計ジャッジ時間 7,385 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
54,540 KB
testcase_01 AC 116 ms
54,100 KB
testcase_02 AC 117 ms
54,360 KB
testcase_03 AC 111 ms
52,944 KB
testcase_04 AC 113 ms
54,048 KB
testcase_05 AC 118 ms
53,912 KB
testcase_06 AC 111 ms
53,748 KB
testcase_07 AC 112 ms
53,888 KB
testcase_08 AC 113 ms
53,316 KB
testcase_09 AC 116 ms
54,016 KB
testcase_10 AC 112 ms
53,940 KB
testcase_11 AC 114 ms
54,176 KB
testcase_12 AC 107 ms
52,676 KB
testcase_13 AC 117 ms
53,996 KB
testcase_14 AC 107 ms
53,876 KB
testcase_15 AC 111 ms
53,688 KB
testcase_16 AC 110 ms
53,748 KB
testcase_17 AC 108 ms
52,640 KB
testcase_18 AC 119 ms
53,968 KB
testcase_19 AC 105 ms
52,820 KB
testcase_20 AC 117 ms
53,848 KB
testcase_21 AC 122 ms
53,944 KB
testcase_22 AC 115 ms
54,132 KB
testcase_23 AC 111 ms
53,896 KB
testcase_24 AC 116 ms
53,952 KB
testcase_25 AC 124 ms
54,104 KB
testcase_26 AC 118 ms
54,004 KB
testcase_27 AC 110 ms
53,000 KB
testcase_28 AC 125 ms
54,408 KB
testcase_29 AC 125 ms
53,740 KB
testcase_30 AC 116 ms
53,876 KB
testcase_31 AC 105 ms
53,168 KB
testcase_32 AC 102 ms
52,720 KB
testcase_33 AC 110 ms
52,956 KB
testcase_34 AC 114 ms
53,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{

	public static void main(String[]$) {
		Scanner s=new Scanner(System.in);
		int t=900+s.nextInt()*60+s.nextInt();
		String v=s.next();
		if(v.indexOf('.')==-1)
			v+=".0";
		t+=Integer.parseInt(v.substring(3).replace(".",""))*6;
		t%=1440;
		System.out.printf("%02d:%02d\n",t/60,t%60);
	}
}
0