結果

問題 No.926 休日の平均
ユーザー fal_rndfal_rnd
提出日時 2020-02-04 00:24:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 1,874 ms
コンパイル使用メモリ 73,620 KB
実行使用メモリ 54,308 KB
最終ジャッジ日時 2024-09-19 12:02:05
合計ジャッジ時間 5,739 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
52,496 KB
testcase_01 AC 108 ms
52,968 KB
testcase_02 AC 109 ms
53,060 KB
testcase_03 AC 115 ms
54,156 KB
testcase_04 AC 108 ms
53,472 KB
testcase_05 AC 116 ms
54,012 KB
testcase_06 AC 117 ms
54,064 KB
testcase_07 AC 117 ms
54,136 KB
testcase_08 AC 107 ms
53,036 KB
testcase_09 AC 118 ms
54,136 KB
testcase_10 AC 114 ms
54,220 KB
testcase_11 AC 121 ms
54,308 KB
testcase_12 AC 123 ms
54,296 KB
testcase_13 AC 115 ms
54,112 KB
testcase_14 AC 105 ms
52,668 KB
testcase_15 AC 116 ms
54,144 KB
testcase_16 AC 104 ms
53,144 KB
testcase_17 AC 107 ms
52,904 KB
testcase_18 AC 115 ms
54,200 KB
testcase_19 AC 116 ms
54,160 KB
testcase_20 AC 113 ms
53,160 KB
testcase_21 AC 118 ms
54,216 KB
testcase_22 AC 117 ms
53,792 KB
testcase_23 AC 120 ms
53,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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