結果

問題 No.651 E869120 and Driving
ユーザー ohagi_1182ohagi_1182
提出日時 2018-02-23 23:20:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 1,000 ms
コード長 326 bytes
コンパイル時間 1,943 ms
コンパイル使用メモリ 75,180 KB
実行使用メモリ 54,188 KB
最終ジャッジ日時 2024-09-22 08:54:44
合計ジャッジ時間 3,813 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
52,848 KB
testcase_01 AC 129 ms
53,992 KB
testcase_02 AC 127 ms
54,188 KB
testcase_03 AC 126 ms
53,936 KB
testcase_04 AC 128 ms
54,148 KB
testcase_05 AC 115 ms
52,956 KB
testcase_06 AC 129 ms
54,028 KB
testcase_07 AC 130 ms
54,044 KB
testcase_08 AC 127 ms
53,704 KB
testcase_09 AC 130 ms
54,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		double time = a / 100.0 * 60.0 + 10 * 60.0;
		int minute = (int)(time % 60);
		int hour = (int)((time / 60) % 24);
		System.out.printf("%02d:%02d\n", hour, minute);

	}

}
0