結果

問題 No.651 E869120 and Driving
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2018-04-14 15:08:12
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
55,176 KB
testcase_01 AC 156 ms
54,860 KB
testcase_02 AC 156 ms
55,140 KB
testcase_03 AC 157 ms
54,920 KB
testcase_04 AC 156 ms
54,968 KB
testcase_05 AC 159 ms
55,008 KB
testcase_06 AC 146 ms
54,832 KB
testcase_07 AC 144 ms
54,760 KB
testcase_08 AC 160 ms
55,112 KB
testcase_09 AC 158 ms
55,052 KB
権限があれば一括ダウンロードができます

ソースコード

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