結果

問題 No.379 五円硬貨
ユーザー TakaTaka
提出日時 2016-11-01 18:35:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 354 bytes
コンパイル時間 3,352 ms
コンパイル使用メモリ 75,332 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-05-03 20:48:38
合計ジャッジ時間 5,780 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 107 ms
53,052 KB
testcase_04 AC 118 ms
54,076 KB
testcase_05 WA -
testcase_06 AC 110 ms
53,872 KB
testcase_07 AC 116 ms
53,868 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 122 ms
53,932 KB
testcase_13 AC 103 ms
52,988 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 111 ms
54,000 KB
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;
import java.math.BigDecimal;

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