結果

問題 No.379 五円硬貨
ユーザー TakaTaka
提出日時 2016-11-01 18:29:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 333 bytes
コンパイル時間 3,202 ms
コンパイル使用メモリ 74,860 KB
実行使用メモリ 54,032 KB
最終ジャッジ日時 2024-11-25 01:06:51
合計ジャッジ時間 6,304 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
52,884 KB
testcase_01 AC 118 ms
54,004 KB
testcase_02 AC 120 ms
53,660 KB
testcase_03 AC 119 ms
54,004 KB
testcase_04 WA -
testcase_05 AC 108 ms
52,452 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 114 ms
53,336 KB
testcase_09 WA -
testcase_10 AC 117 ms
53,776 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 128 ms
53,904 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);
		int a=sc.nextInt();
		int b=sc.nextInt();
		int c=sc.nextInt();
		
		int node;
		
		node = ((a/5) * b)/c;
		
		System.out.println(node);
    }
}
0