結果

問題 No.379 五円硬貨
ユーザー tsunabittsunabit
提出日時 2019-06-02 14:01:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 385 bytes
コンパイル時間 3,354 ms
コンパイル使用メモリ 74,056 KB
実行使用メモリ 57,680 KB
最終ジャッジ日時 2023-10-17 23:01:56
合計ジャッジ時間 6,898 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
57,540 KB
testcase_01 AC 131 ms
57,520 KB
testcase_02 AC 131 ms
57,604 KB
testcase_03 AC 133 ms
57,364 KB
testcase_04 AC 136 ms
57,540 KB
testcase_05 AC 132 ms
57,428 KB
testcase_06 WA -
testcase_07 AC 130 ms
57,488 KB
testcase_08 AC 132 ms
57,440 KB
testcase_09 WA -
testcase_10 AC 135 ms
57,532 KB
testcase_11 WA -
testcase_12 AC 130 ms
57,400 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 134 ms
57,396 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