結果

問題 No.652 E869120 and TimeZone
ユーザー fal_rndfal_rnd
提出日時 2018-02-27 00:25:15
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 271 bytes
コンパイル時間 1,992 ms
コンパイル使用メモリ 75,444 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2024-05-09 20:25:57
合計ジャッジ時間 6,231 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
39,692 KB
testcase_01 WA -
testcase_02 AC 104 ms
41,124 KB
testcase_03 AC 105 ms
40,952 KB
testcase_04 AC 101 ms
40,772 KB
testcase_05 AC 103 ms
41,036 KB
testcase_06 AC 93 ms
40,160 KB
testcase_07 AC 109 ms
41,260 KB
testcase_08 AC 106 ms
40,972 KB
testcase_09 AC 105 ms
41,424 KB
testcase_10 AC 107 ms
41,060 KB
testcase_11 AC 104 ms
41,532 KB
testcase_12 AC 104 ms
41,164 KB
testcase_13 AC 103 ms
40,984 KB
testcase_14 AC 102 ms
41,144 KB
testcase_15 AC 100 ms
40,900 KB
testcase_16 AC 108 ms
40,996 KB
testcase_17 AC 102 ms
40,352 KB
testcase_18 AC 102 ms
40,396 KB
testcase_19 AC 104 ms
41,292 KB
testcase_20 AC 111 ms
41,796 KB
testcase_21 AC 104 ms
40,464 KB
testcase_22 AC 104 ms
41,236 KB
testcase_23 AC 101 ms
41,184 KB
testcase_24 AC 102 ms
41,380 KB
testcase_25 AC 88 ms
39,456 KB
testcase_26 AC 102 ms
41,052 KB
testcase_27 AC 90 ms
39,588 KB
testcase_28 AC 104 ms
41,172 KB
testcase_29 AC 103 ms
41,400 KB
testcase_30 AC 99 ms
40,676 KB
testcase_31 AC 104 ms
41,004 KB
testcase_32 AC 100 ms
41,116 KB
testcase_33 AC 102 ms
40,816 KB
testcase_34 AC 102 ms
41,212 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()
		+(int)(Double.parseDouble(s.next().substring(3))*60);
		t%=1440;
		System.out.printf("%02d:%02d\n",t/60,t%60);
	}
}
0