結果

問題 No.926 休日の平均
ユーザー tentententen
提出日時 2020-11-12 19:59:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 4,161 ms
コンパイル使用メモリ 70,740 KB
実行使用メモリ 56,060 KB
最終ジャッジ日時 2023-09-30 01:48:59
合計ジャッジ時間 7,544 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
55,964 KB
testcase_01 AC 126 ms
55,848 KB
testcase_02 AC 125 ms
56,000 KB
testcase_03 AC 128 ms
55,852 KB
testcase_04 AC 126 ms
55,668 KB
testcase_05 AC 124 ms
55,712 KB
testcase_06 AC 123 ms
55,664 KB
testcase_07 AC 123 ms
55,812 KB
testcase_08 AC 124 ms
55,612 KB
testcase_09 AC 125 ms
55,620 KB
testcase_10 AC 122 ms
55,732 KB
testcase_11 AC 124 ms
55,772 KB
testcase_12 AC 122 ms
55,720 KB
testcase_13 AC 122 ms
55,816 KB
testcase_14 AC 123 ms
55,824 KB
testcase_15 AC 123 ms
55,740 KB
testcase_16 AC 124 ms
55,816 KB
testcase_17 AC 128 ms
56,060 KB
testcase_18 AC 124 ms
55,940 KB
testcase_19 AC 124 ms
55,644 KB
testcase_20 AC 124 ms
55,676 KB
testcase_21 AC 125 ms
55,616 KB
testcase_22 AC 122 ms
55,984 KB
testcase_23 AC 126 ms
55,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a= sc.nextInt();
        double b = sc.nextInt();
        int c = sc.nextInt();
        System.out.println(a / b * c);
    }
}
0