結果

問題 No.379 五円硬貨
ユーザー tsunabittsunabit
提出日時 2019-06-02 14:01:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 385 bytes
コンパイル時間 2,866 ms
コンパイル使用メモリ 74,784 KB
実行使用メモリ 54,544 KB
最終ジャッジ日時 2024-09-17 20:10:27
合計ジャッジ時間 5,785 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
54,380 KB
testcase_01 AC 106 ms
53,976 KB
testcase_02 AC 116 ms
54,188 KB
testcase_03 AC 101 ms
52,804 KB
testcase_04 AC 119 ms
54,204 KB
testcase_05 AC 124 ms
54,192 KB
testcase_06 WA -
testcase_07 AC 117 ms
53,924 KB
testcase_08 AC 115 ms
54,068 KB
testcase_09 WA -
testcase_10 AC 103 ms
52,988 KB
testcase_11 WA -
testcase_12 AC 103 ms
52,984 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 121 ms
53,884 KB
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

public class No379 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner s = new Scanner(System.in);
        long n = s.nextLong();
        long g = s.nextLong();
        long v = s.nextLong();
        System.out.println((n / 5) * g / v);
    }
}
0