結果

問題 No.379 五円硬貨
ユーザー TakaTaka
提出日時 2016-11-01 18:35:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 354 bytes
コンパイル時間 3,440 ms
コンパイル使用メモリ 74,848 KB
実行使用メモリ 56,188 KB
最終ジャッジ日時 2024-11-25 01:09:12
合計ジャッジ時間 5,907 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 119 ms
53,928 KB
testcase_04 AC 125 ms
53,972 KB
testcase_05 WA -
testcase_06 AC 127 ms
53,716 KB
testcase_07 AC 124 ms
53,860 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 122 ms
54,272 KB
testcase_13 AC 122 ms
54,080 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 120 ms
53,980 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