結果

問題 No.651 E869120 and Driving
ユーザー tsunabittsunabit
提出日時 2018-07-22 16:14:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 1,000 ms
コード長 367 bytes
コンパイル時間 3,692 ms
コンパイル使用メモリ 78,248 KB
実行使用メモリ 55,108 KB
最終ジャッジ日時 2024-09-22 09:01:57
合計ジャッジ時間 5,678 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
54,428 KB
testcase_01 AC 156 ms
55,004 KB
testcase_02 AC 165 ms
54,972 KB
testcase_03 AC 155 ms
54,976 KB
testcase_04 AC 157 ms
55,032 KB
testcase_05 AC 161 ms
55,080 KB
testcase_06 AC 163 ms
55,108 KB
testcase_07 AC 160 ms
55,056 KB
testcase_08 AC 156 ms
54,908 KB
testcase_09 AC 155 ms
55,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;
import java.time.*;
import java.time.format.*;

public class No651 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
        int h = 10 + (a / 100);
        int m = (a / 10) % 10 * 6 ;
        System.out.println(h + ":" + (m > 10 ? m : "0"+m));
	}
}
0