結果

問題 No.651 E869120 and Driving
ユーザー aikon_marimoaikon_marimo
提出日時 2018-02-23 23:21:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 1,000 ms
コード長 274 bytes
コンパイル時間 2,044 ms
コンパイル使用メモリ 76,640 KB
実行使用メモリ 55,212 KB
最終ジャッジ日時 2024-09-22 08:54:38
合計ジャッジ時間 4,226 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
54,940 KB
testcase_01 AC 143 ms
54,864 KB
testcase_02 AC 143 ms
54,536 KB
testcase_03 AC 158 ms
55,212 KB
testcase_04 AC 157 ms
54,780 KB
testcase_05 AC 159 ms
55,104 KB
testcase_06 AC 160 ms
55,036 KB
testcase_07 AC 145 ms
54,560 KB
testcase_08 AC 159 ms
54,940 KB
testcase_09 AC 158 ms
55,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner in = new Scanner(System.in);
		
		int a = in.nextInt();
		
		int h = a/100;
		int m = (int)(60*(a%100)/100.0);
		System.out.println((10+h)+":"+String.format("%02d", m));
	}
}
0