結果

問題 No.651 E869120 and Driving
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2018-04-14 15:08:12
言語 Java
(openjdk 23)
結果
AC  
実行時間 160 ms / 1,000 ms
コード長 372 bytes
コンパイル時間 2,163 ms
コンパイル使用メモリ 76,584 KB
実行使用メモリ 55,176 KB
最終ジャッジ日時 2024-09-22 08:59:34
合計ジャッジ時間 4,290 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        System.out.println(solve(n));
    }
    
    static String solve(int n) {
        int hour = 10 + n / 100;
        int min = n % 100 /10 * 6;
        return hour +":" + String.format("%02d",min);
    }
}
0