結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
40,896 KB
testcase_01 AC 126 ms
41,448 KB
testcase_02 AC 132 ms
40,952 KB
testcase_03 AC 131 ms
40,992 KB
testcase_04 AC 110 ms
39,668 KB
testcase_05 AC 126 ms
41,080 KB
testcase_06 AC 129 ms
40,932 KB
testcase_07 AC 127 ms
41,220 KB
testcase_08 AC 129 ms
40,920 KB
testcase_09 AC 132 ms
41,328 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