結果
問題 |
No.651 E869120 and Driving
|
ユーザー |
|
提出日時 | 2021-03-22 19:15:36 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 134 ms / 1,000 ms |
コード長 | 414 bytes |
コンパイル時間 | 3,444 ms |
コンパイル使用メモリ | 74,800 KB |
実行使用メモリ | 41,196 KB |
最終ジャッジ日時 | 2024-11-24 06:15:05 |
合計ジャッジ時間 | 5,420 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 7 |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class No00000651_Main { static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); public static void main(String[] args) throws IOException { int a = Integer.parseInt(br.readLine()); int m = (60 * a) / 100; System.out.println(String.format("%02d:%02d", 10 + (m / 60), m % 60)); } }