結果

問題 No.1453 手助け
ユーザー jun612jun612
提出日時 2021-04-01 15:21:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 896 bytes
コンパイル時間 3,490 ms
コンパイル使用メモリ 74,892 KB
実行使用メモリ 54,360 KB
最終ジャッジ日時 2024-12-17 19:11:06
合計ジャッジ時間 7,733 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,256 KB
testcase_01 AC 138 ms
54,020 KB
testcase_02 AC 140 ms
54,224 KB
testcase_03 AC 138 ms
54,220 KB
testcase_04 AC 135 ms
54,212 KB
testcase_05 AC 136 ms
54,236 KB
testcase_06 AC 132 ms
53,976 KB
testcase_07 AC 133 ms
53,988 KB
testcase_08 AC 121 ms
52,880 KB
testcase_09 AC 138 ms
54,272 KB
testcase_10 AC 134 ms
54,164 KB
testcase_11 AC 136 ms
54,248 KB
testcase_12 AC 138 ms
54,360 KB
testcase_13 AC 133 ms
54,096 KB
testcase_14 AC 137 ms
54,052 KB
testcase_15 AC 137 ms
54,192 KB
testcase_16 AC 134 ms
54,128 KB
testcase_17 AC 136 ms
54,136 KB
testcase_18 AC 135 ms
54,312 KB
testcase_19 AC 136 ms
53,976 KB
testcase_20 AC 135 ms
54,216 KB
testcase_21 AC 134 ms
53,864 KB
testcase_22 AC 133 ms
54,156 KB
testcase_23 AC 133 ms
54,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.lang.System.*;
import java.util.Scanner;


public class file{
    public static void main (String[]args){
        Scanner sc = new Scanner(System.in);
        int a,b,c,d,e,r,sum,x;
        a = sc.nextInt();
        b = sc.nextInt();
        c = sc.nextInt();
        d = sc.nextInt();
        e = sc.nextInt();
        sum=d;
        r = d;
        x=d;
        if(b-c!=0){
            for(int i=2;i<=a*(b-c);i++){
                if(i%10!=0){
                    r= x;
                    sum+=r;
                    x=r;
                }else if(i%10==0&&e<=x){
                    r=x-e;
                    sum+=r;
                    x=r;
    
                }else if(i%10==0&&e>x){
                    r=x;
                    sum+=r;
                    x=r;
                }

        }
        } else {
            sum=0;
        }
        System.out.println(sum);

    }
}
0