結果

問題 No.651 E869120 and Driving
ユーザー Freed_0929Freed_0929
提出日時 2018-02-23 22:26:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 170 ms / 1,000 ms
コード長 360 bytes
コンパイル時間 2,190 ms
コンパイル使用メモリ 76,692 KB
実行使用メモリ 55,104 KB
最終ジャッジ日時 2024-09-22 08:53:36
合計ジャッジ時間 4,446 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
55,096 KB
testcase_01 AC 159 ms
54,980 KB
testcase_02 AC 157 ms
55,020 KB
testcase_03 AC 165 ms
54,920 KB
testcase_04 AC 161 ms
55,020 KB
testcase_05 AC 159 ms
54,820 KB
testcase_06 AC 170 ms
55,012 KB
testcase_07 AC 159 ms
55,104 KB
testcase_08 AC 143 ms
54,540 KB
testcase_09 AC 157 ms
54,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;
import java.util.Deque;
import java.util.ArrayDeque;

public class Main {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a=sc.nextInt();
        int b=a/100;
        int c=(int) ((a-b*100)*0.6);
        System.out.println(10+b+":"+c/10+""+c%10);
    }
}
0