結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
53,048 KB
testcase_01 AC 104 ms
52,724 KB
testcase_02 AC 118 ms
54,096 KB
testcase_03 AC 115 ms
54,084 KB
testcase_04 AC 118 ms
54,084 KB
testcase_05 AC 120 ms
54,064 KB
testcase_06 WA -
testcase_07 AC 101 ms
52,784 KB
testcase_08 AC 114 ms
54,176 KB
testcase_09 WA -
testcase_10 AC 121 ms
53,868 KB
testcase_11 WA -
testcase_12 AC 115 ms
53,988 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 123 ms
54,200 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