結果

問題 No.651 E869120 and Driving
ユーザー YOSHIYOSHI
提出日時 2021-03-22 19:15:36
言語 Java
(openjdk 23)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 414 bytes
コンパイル時間 3,444 ms
コンパイル使用メモリ 74,800 KB
実行使用メモリ 41,196 KB
最終ジャッジ日時 2024-11-24 06:15:05
合計ジャッジ時間 5,420 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
40,912 KB
testcase_01 AC 131 ms
41,196 KB
testcase_02 AC 134 ms
41,004 KB
testcase_03 AC 126 ms
40,852 KB
testcase_04 AC 126 ms
41,012 KB
testcase_05 AC 126 ms
41,056 KB
testcase_06 AC 125 ms
41,088 KB
testcase_07 AC 133 ms
40,888 KB
testcase_08 AC 128 ms
40,912 KB
testcase_09 AC 121 ms
40,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No00000651_Main {
	static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	public static void main(String[] args) throws IOException {
		int a = Integer.parseInt(br.readLine());
		int m = (60 * a) / 100;
		System.out.println(String.format("%02d:%02d", 10 + (m / 60), m % 60));
	}
}
0