結果
問題 |
No.652 E869120 and TimeZone
|
ユーザー |
![]() |
提出日時 | 2018-02-28 16:30:09 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 158 ms / 1,000 ms |
コード長 | 951 bytes |
コンパイル時間 | 2,087 ms |
コンパイル使用メモリ | 76,392 KB |
実行使用メモリ | 42,704 KB |
最終ジャッジ日時 | 2024-06-11 12:23:36 |
合計ジャッジ時間 | 8,051 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 5 |
other | AC * 30 |
ソースコード
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国の時刻を求める //余計な部分を取り除く double dif = Double.parseDouble(s.replaceAll("[UTC+]",""))*10*6; //日本時間の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); } }