結果

問題 No.926 休日の平均
ユーザー planetWorldYplanetWorldY
提出日時 2020-02-22 18:46:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 327 bytes
コンパイル時間 3,183 ms
コンパイル使用メモリ 71,924 KB
実行使用メモリ 56,264 KB
最終ジャッジ日時 2023-07-31 01:58:20
合計ジャッジ時間 6,658 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
55,536 KB
testcase_01 AC 124 ms
56,044 KB
testcase_02 AC 126 ms
55,760 KB
testcase_03 AC 124 ms
55,716 KB
testcase_04 AC 125 ms
55,972 KB
testcase_05 AC 123 ms
54,196 KB
testcase_06 AC 123 ms
55,856 KB
testcase_07 AC 125 ms
55,796 KB
testcase_08 AC 122 ms
55,848 KB
testcase_09 AC 123 ms
55,960 KB
testcase_10 AC 125 ms
55,872 KB
testcase_11 AC 124 ms
56,040 KB
testcase_12 AC 123 ms
53,872 KB
testcase_13 AC 125 ms
56,112 KB
testcase_14 AC 124 ms
55,716 KB
testcase_15 AC 124 ms
55,852 KB
testcase_16 AC 124 ms
55,908 KB
testcase_17 AC 126 ms
55,996 KB
testcase_18 AC 124 ms
56,052 KB
testcase_19 AC 125 ms
55,800 KB
testcase_20 AC 124 ms
56,264 KB
testcase_21 AC 123 ms
55,992 KB
testcase_22 AC 124 ms
56,124 KB
testcase_23 AC 125 ms
55,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

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