結果

問題 No.926 休日の平均
ユーザー ks2mks2m
提出日時 2019-11-22 22:33:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 2,026 ms
コンパイル使用メモリ 74,200 KB
実行使用メモリ 54,376 KB
最終ジャッジ日時 2024-10-11 04:16:11
合計ジャッジ時間 6,312 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,876 KB
testcase_01 AC 134 ms
54,248 KB
testcase_02 AC 134 ms
53,916 KB
testcase_03 AC 134 ms
54,244 KB
testcase_04 AC 133 ms
53,900 KB
testcase_05 AC 134 ms
53,860 KB
testcase_06 AC 132 ms
53,812 KB
testcase_07 AC 129 ms
53,684 KB
testcase_08 AC 129 ms
54,288 KB
testcase_09 AC 126 ms
54,188 KB
testcase_10 AC 133 ms
54,136 KB
testcase_11 AC 131 ms
54,120 KB
testcase_12 AC 127 ms
54,096 KB
testcase_13 AC 129 ms
54,052 KB
testcase_14 AC 126 ms
54,376 KB
testcase_15 AC 123 ms
53,952 KB
testcase_16 AC 124 ms
53,836 KB
testcase_17 AC 111 ms
52,968 KB
testcase_18 AC 123 ms
53,776 KB
testcase_19 AC 125 ms
53,944 KB
testcase_20 AC 128 ms
53,996 KB
testcase_21 AC 133 ms
53,836 KB
testcase_22 AC 129 ms
54,224 KB
testcase_23 AC 115 ms
52,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		double a = sc.nextInt();
		int b = sc.nextInt();
		int c = sc.nextInt();
		sc.close();

		System.out.println(a * c / b);
	}
}
0