結果

問題 No.651 E869120 and Driving
ユーザー GrenacheGrenache
提出日時 2018-03-04 00:12:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 594 bytes
コンパイル時間 3,598 ms
コンパイル使用メモリ 75,020 KB
実行使用メモリ 54,596 KB
最終ジャッジ日時 2024-09-22 08:57:05
合計ジャッジ時間 5,614 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,248 KB
testcase_01 AC 131 ms
54,596 KB
testcase_02 AC 131 ms
53,968 KB
testcase_03 AC 132 ms
54,396 KB
testcase_04 AC 135 ms
54,156 KB
testcase_05 AC 132 ms
54,036 KB
testcase_06 AC 131 ms
54,052 KB
testcase_07 AC 134 ms
54,196 KB
testcase_08 AC 130 ms
53,972 KB
testcase_09 AC 131 ms
54,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder651 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int a = sc.nextInt();

		int m = a / 10 * 6;
		int h = m / 60;

		pr.printf("%02d:%02d\n", (10 + h) % 24, m % 60);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0