結果

問題 No.651 E869120 and Driving
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-05-06 17:07:44
言語 Java
(openjdk 23)
結果
AC  
実行時間 156 ms / 1,000 ms
コード長 383 bytes
コンパイル時間 2,015 ms
コンパイル使用メモリ 76,140 KB
実行使用メモリ 55,016 KB
最終ジャッジ日時 2024-09-22 09:00:01
合計ジャッジ時間 4,207 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int a = in.nextInt();

        int h = a / 100;

        double temp = (double)(a % 100) / 100.0;
        int m = (int)(temp * 60.0);

        if(m < 10) System.out.println(h + 10 + ":0" + m);
        else System.out.println(h + 10 + ":" + m);
    }
}
0