結果

問題 No.651 E869120 and Driving
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-24 00:53:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 159 ms / 1,000 ms
コード長 311 bytes
コンパイル時間 2,074 ms
コンパイル使用メモリ 76,724 KB
実行使用メモリ 55,120 KB
最終ジャッジ日時 2024-09-22 08:55:13
合計ジャッジ時間 4,265 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
54,692 KB
testcase_01 AC 159 ms
54,924 KB
testcase_02 AC 149 ms
55,120 KB
testcase_03 AC 138 ms
54,600 KB
testcase_04 AC 157 ms
55,092 KB
testcase_05 AC 151 ms
54,728 KB
testcase_06 AC 152 ms
54,900 KB
testcase_07 AC 151 ms
54,916 KB
testcase_08 AC 148 ms
54,964 KB
testcase_09 AC 153 ms
54,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int a = sc.nextInt();
		a = 60*a/100;
		int time = 600+a;
		int h = time/60;
		int m = time%60;
		if (m<10) {System.out.println(h+":0"+m);}
		else {System.out.println(h+":"+m);}
	}
}
0