結果

問題 No.651 E869120 and Driving
ユーザー sudo_yumsudo_yum
提出日時 2018-05-25 09:59:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 1,000 ms
コード長 315 bytes
コンパイル時間 2,148 ms
コンパイル使用メモリ 76,244 KB
実行使用メモリ 55,224 KB
最終ジャッジ日時 2024-09-22 09:00:52
合計ジャッジ時間 4,223 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
54,720 KB
testcase_01 AC 154 ms
55,068 KB
testcase_02 AC 152 ms
54,768 KB
testcase_03 AC 151 ms
54,660 KB
testcase_04 AC 155 ms
54,932 KB
testcase_05 AC 154 ms
54,928 KB
testcase_06 AC 151 ms
54,876 KB
testcase_07 AC 160 ms
55,080 KB
testcase_08 AC 153 ms
54,920 KB
testcase_09 AC 154 ms
55,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{

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