結果

問題 No.379 五円硬貨
ユーザー ontama_12ontama_12
提出日時 2016-09-23 10:23:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 495 bytes
コンパイル時間 2,079 ms
コンパイル使用メモリ 74,176 KB
実行使用メモリ 56,240 KB
最終ジャッジ日時 2024-11-17 17:34:24
合計ジャッジ時間 5,407 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,276 KB
testcase_01 AC 139 ms
41,108 KB
testcase_02 AC 139 ms
41,240 KB
testcase_03 AC 140 ms
41,192 KB
testcase_04 AC 135 ms
41,036 KB
testcase_05 AC 139 ms
40,920 KB
testcase_06 WA -
testcase_07 AC 141 ms
40,928 KB
testcase_08 AC 137 ms
41,144 KB
testcase_09 WA -
testcase_10 AC 138 ms
41,184 KB
testcase_11 WA -
testcase_12 AC 139 ms
41,428 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 141 ms
41,568 KB
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
//入力文字をの読み取り
    	Scanner sc = new Scanner(System.in);
//一文字目
        long money = sc.nextInt();
        //二文字目
        long gas = sc.nextInt();
      //3文字目
        long volume = sc.nextInt();

        //現在所持金からの5円硬貨を算出
        long fivemoney = money/5;

        //出力
        	System.out.println(fivemoney*gas/volume);

    }
}
0