結果

問題 No.379 五円硬貨
ユーザー sasukesasuke
提出日時 2016-06-20 17:59:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 346 bytes
コンパイル時間 3,058 ms
コンパイル使用メモリ 73,952 KB
実行使用メモリ 56,092 KB
最終ジャッジ日時 2024-10-11 16:50:48
合計ジャッジ時間 6,309 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,172 KB
testcase_01 AC 132 ms
41,588 KB
testcase_02 AC 129 ms
41,408 KB
testcase_03 AC 131 ms
41,196 KB
testcase_04 WA -
testcase_05 AC 133 ms
41,232 KB
testcase_06 WA -
testcase_07 AC 128 ms
41,388 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 130 ms
41,152 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 133 ms
41,172 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 N =sc.nextLong();
        long G =sc.nextLong();
        long V =sc.nextLong();
        long maisu=(int)N/5;
        long x=maisu /V;
        long noudo= x*G;
        System.out.println(noudo);
    }
}
0