結果

問題 No.1453 手助け
ユーザー jun612jun612
提出日時 2021-04-01 15:21:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 896 bytes
コンパイル時間 3,662 ms
コンパイル使用メモリ 74,588 KB
実行使用メモリ 41,620 KB
最終ジャッジ日時 2024-05-10 00:16:41
合計ジャッジ時間 7,441 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,412 KB
testcase_01 AC 133 ms
41,316 KB
testcase_02 AC 137 ms
41,156 KB
testcase_03 AC 132 ms
41,284 KB
testcase_04 AC 132 ms
41,340 KB
testcase_05 AC 132 ms
41,388 KB
testcase_06 AC 133 ms
41,560 KB
testcase_07 AC 131 ms
41,560 KB
testcase_08 AC 133 ms
41,324 KB
testcase_09 AC 130 ms
41,600 KB
testcase_10 AC 136 ms
41,320 KB
testcase_11 AC 137 ms
41,352 KB
testcase_12 AC 134 ms
41,336 KB
testcase_13 AC 134 ms
41,392 KB
testcase_14 AC 133 ms
41,224 KB
testcase_15 AC 134 ms
41,124 KB
testcase_16 AC 131 ms
41,448 KB
testcase_17 AC 131 ms
41,320 KB
testcase_18 AC 131 ms
41,312 KB
testcase_19 AC 133 ms
41,344 KB
testcase_20 AC 130 ms
41,464 KB
testcase_21 AC 131 ms
41,356 KB
testcase_22 AC 134 ms
41,148 KB
testcase_23 AC 132 ms
41,620 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