結果

問題 No.651 E869120 and Driving
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 14:48:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 214 ms / 1,000 ms
コード長 424 bytes
コンパイル時間 2,208 ms
コンパイル使用メモリ 74,856 KB
実行使用メモリ 55,116 KB
最終ジャッジ日時 2024-09-22 09:06:52
合計ジャッジ時間 4,940 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 205 ms
54,948 KB
testcase_01 AC 208 ms
54,968 KB
testcase_02 AC 206 ms
54,792 KB
testcase_03 AC 214 ms
54,976 KB
testcase_04 AC 210 ms
54,828 KB
testcase_05 AC 200 ms
55,116 KB
testcase_06 AC 198 ms
55,060 KB
testcase_07 AC 201 ms
54,888 KB
testcase_08 AC 197 ms
55,036 KB
testcase_09 AC 208 ms
54,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.text.SimpleDateFormat;
import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		Calendar cl = Calendar.getInstance();
		cl.set(Calendar.HOUR_OF_DAY, 10);
		cl.set(Calendar.MINUTE, 0);
		cl.add(Calendar.MINUTE, sc.nextInt()*60/100);
		SimpleDateFormat sdf = new SimpleDateFormat("HH:mm");
		System.out.println(sdf.format(cl.getTime()));
		
	}
}
0