結果

問題 No.651 E869120 and Driving
ユーザー tenten
提出日時 2020-09-04 16:58:59
言語 Java
(openjdk 23)
結果
AC  
実行時間 144 ms / 1,000 ms
コード長 227 bytes
コンパイル時間 3,946 ms
コンパイル使用メモリ 73,908 KB
実行使用メモリ 41,788 KB
最終ジャッジ日時 2024-11-26 03:28:39
合計ジャッジ時間 5,081 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int a = sc.nextInt() / 10;
    	System.out.printf("%d:%02d\n", a / 10 + 10, a % 10 * 6);
    }
}
0