結果
問題 |
No.652 E869120 and TimeZone
|
ユーザー |
![]() |
提出日時 | 2018-02-28 16:23:32 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 953 bytes |
コンパイル時間 | 2,011 ms |
コンパイル使用メモリ | 85,092 KB |
実行使用メモリ | 56,632 KB |
最終ジャッジ日時 | 2024-12-21 13:02:18 |
合計ジャッジ時間 | 8,458 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 5 |
other | AC * 29 WA * 1 |
ソースコード
import java.util.*; import static java.lang.System.*; public class Main { static Scanner sc = new Scanner(System.in); public static void main(String[] args) { int h = sc.nextInt(); int m = sc.nextInt(); String s = sc.next(); //日本の時刻(分) int japan = h*60+m; //X国の時刻を求める //余計な部分を取り除く int dif = (int)(Double.parseDouble(s.replaceAll("[UTC+]",""))*60); //日本時間の9を引いてやることによって、 //X国の現在時刻が日本とどれだけずれているかが求まる。 dif = dif-540; //X国の時刻(分) int x = japan+(int)dif; //以下、これを時と分の表記に直す x %= 1440; if (x<0) { x += 1440; } int H = x/60; int M = x%60; //直せたので、あとは出力するだけ String ans = ""; if (H < 10) {ans += "0";} ans += H + ":"; if (M < 10) {ans += "0";} ans += M; out.println(ans); } }