結果

問題 No.651 E869120 and Driving
ユーザー shinwisteriashinwisteria
提出日時 2018-03-04 10:12:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 1,000 ms
コード長 481 bytes
コンパイル時間 3,567 ms
コンパイル使用メモリ 76,988 KB
実行使用メモリ 55,160 KB
最終ジャッジ日時 2024-09-22 08:57:11
合計ジャッジ時間 5,624 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
54,992 KB
testcase_01 AC 142 ms
54,524 KB
testcase_02 AC 156 ms
54,976 KB
testcase_03 AC 154 ms
55,160 KB
testcase_04 AC 157 ms
54,892 KB
testcase_05 AC 158 ms
55,008 KB
testcase_06 AC 156 ms
55,064 KB
testcase_07 AC 157 ms
55,036 KB
testcase_08 AC 155 ms
55,056 KB
testcase_09 AC 157 ms
55,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con651 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int a = s.nextInt();
		s.close();

		int h = 10 , m = 0;
		m += (a % 100) * 60 / 100;
		h += (a / 100) + m / 60;
		h %= 24;
		m %= 60;

		String as = Integer.toString(h) , bs = Integer.toString(m);
		if(as.length() == 1){
			as = "0" + as;
		}
		if(bs.length() == 1){
			bs = "0" + bs;
		}
		System.out.println(as + ":" + bs);

	}

}
0