結果

問題 No.379 五円硬貨
ユーザー TakaTaka
提出日時 2016-11-01 18:33:22
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 344 bytes
コンパイル時間 3,621 ms
コンパイル使用メモリ 75,772 KB
実行使用メモリ 54,104 KB
最終ジャッジ日時 2024-11-25 01:09:05
合計ジャッジ時間 6,626 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,056 KB
testcase_01 AC 119 ms
53,744 KB
testcase_02 AC 123 ms
53,916 KB
testcase_03 AC 121 ms
53,788 KB
testcase_04 AC 120 ms
53,804 KB
testcase_05 AC 108 ms
53,036 KB
testcase_06 WA -
testcase_07 AC 120 ms
53,844 KB
testcase_08 AC 122 ms
53,992 KB
testcase_09 WA -
testcase_10 AC 131 ms
53,888 KB
testcase_11 WA -
testcase_12 AC 119 ms
53,964 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 127 ms
53,832 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();
		
		long  node;
		
		node = ((a/5) * b)/c;
		
		System.out.println(node);
    }
}
0