結果
問題 | No.652 E869120 and TimeZone |
ユーザー | 37zigen |
提出日時 | 2020-03-19 01:30:27 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 605 bytes |
コンパイル時間 | 2,297 ms |
コンパイル使用メモリ | 81,500 KB |
実行使用メモリ | 42,988 KB |
最終ジャッジ日時 | 2024-05-08 02:59:14 |
合計ジャッジ時間 | 9,445 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 155 ms
42,460 KB |
testcase_02 | AC | 154 ms
42,296 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 166 ms
42,536 KB |
testcase_06 | AC | 154 ms
42,504 KB |
testcase_07 | AC | 168 ms
42,516 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 161 ms
42,596 KB |
testcase_13 | AC | 171 ms
42,704 KB |
testcase_14 | AC | 153 ms
42,492 KB |
testcase_15 | WA | - |
testcase_16 | AC | 170 ms
42,836 KB |
testcase_17 | AC | 171 ms
42,768 KB |
testcase_18 | AC | 162 ms
42,448 KB |
testcase_19 | WA | - |
testcase_20 | AC | 165 ms
42,652 KB |
testcase_21 | AC | 155 ms
42,388 KB |
testcase_22 | AC | 160 ms
42,428 KB |
testcase_23 | WA | - |
testcase_24 | AC | 153 ms
42,776 KB |
testcase_25 | WA | - |
testcase_26 | AC | 161 ms
42,520 KB |
testcase_27 | WA | - |
testcase_28 | AC | 160 ms
42,716 KB |
testcase_29 | AC | 156 ms
42,516 KB |
testcase_30 | AC | 160 ms
42,292 KB |
testcase_31 | AC | 161 ms
42,888 KB |
testcase_32 | AC | 151 ms
42,536 KB |
testcase_33 | WA | - |
testcase_34 | AC | 157 ms
42,608 KB |
ソースコード
import java.util.ArrayDeque; import java.util.Arrays; import java.util.Scanner; class Main { public static void main(String[] args) { new Main().run(); } void run() { Scanner sc = new Scanner(System.in); int h=sc.nextInt(); int m=sc.nextInt(); String str=sc.next(); str=str.substring(3, str.length()); int add_m=(int)(Double.valueOf(str)*60+1e-6); m+=add_m; h=(h+m/60-9+24)%24; m%=60; if(m<0) { m+=60; h=(h-1+24)%24; } System.out.println((h<10?"0":"")+h+":"+(m<10?"0":"")+m); } void tr(Object... objects) { System.out.println(Arrays.deepToString(objects)); } }