結果

問題 No.926 休日の平均
ユーザー poi_kyopropoi_kyopro
提出日時 2019-11-22 21:22:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 2,262 ms
コンパイル使用メモリ 73,944 KB
実行使用メモリ 54,380 KB
最終ジャッジ日時 2024-10-11 02:44:02
合計ジャッジ時間 6,404 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,144 KB
testcase_01 AC 128 ms
54,068 KB
testcase_02 AC 129 ms
54,240 KB
testcase_03 AC 126 ms
53,984 KB
testcase_04 AC 125 ms
54,276 KB
testcase_05 AC 111 ms
53,080 KB
testcase_06 AC 146 ms
54,132 KB
testcase_07 AC 139 ms
53,940 KB
testcase_08 AC 145 ms
54,088 KB
testcase_09 AC 126 ms
53,820 KB
testcase_10 AC 126 ms
54,128 KB
testcase_11 AC 130 ms
54,008 KB
testcase_12 AC 129 ms
54,092 KB
testcase_13 AC 130 ms
54,028 KB
testcase_14 AC 126 ms
54,380 KB
testcase_15 AC 131 ms
54,300 KB
testcase_16 AC 123 ms
53,872 KB
testcase_17 AC 125 ms
54,220 KB
testcase_18 AC 114 ms
52,696 KB
testcase_19 AC 116 ms
52,808 KB
testcase_20 AC 130 ms
53,652 KB
testcase_21 AC 131 ms
54,008 KB
testcase_22 AC 131 ms
53,708 KB
testcase_23 AC 113 ms
52,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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