結果

問題 No.842 初詣
ユーザー TomoyaTomoya
提出日時 2019-06-28 21:48:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 1,220 bytes
コンパイル時間 3,907 ms
コンパイル使用メモリ 77,164 KB
実行使用メモリ 41,648 KB
最終ジャッジ日時 2024-07-02 04:36:13
合計ジャッジ時間 7,694 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,100 KB
testcase_01 AC 127 ms
41,028 KB
testcase_02 AC 127 ms
41,164 KB
testcase_03 AC 129 ms
40,928 KB
testcase_04 AC 128 ms
41,164 KB
testcase_05 AC 138 ms
41,128 KB
testcase_06 AC 127 ms
41,212 KB
testcase_07 AC 132 ms
41,068 KB
testcase_08 AC 128 ms
41,312 KB
testcase_09 AC 129 ms
41,380 KB
testcase_10 AC 146 ms
41,052 KB
testcase_11 AC 126 ms
41,324 KB
testcase_12 AC 131 ms
41,056 KB
testcase_13 AC 130 ms
40,936 KB
testcase_14 AC 128 ms
41,080 KB
testcase_15 AC 127 ms
41,648 KB
testcase_16 AC 128 ms
41,184 KB
testcase_17 AC 131 ms
41,356 KB
testcase_18 AC 138 ms
41,196 KB
testcase_19 AC 119 ms
39,996 KB
testcase_20 AC 140 ms
41,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main.java.yukicoder;
import java.util.Scanner;

public class B {
    public static void main(String[] args) {
        //System.out.println();
        Scanner scanner = new Scanner(System.in);
        
        int[] Val = new int[7];
        for(int i=0; i<7; i++) Val[i] = Integer.parseInt(scanner.next());   
        /*
        int [] Val = new int[7];
        Val[0] = 0;
        Val[1] = 0;
        Val[2] = 2;
        Val[3] = 0;
        Val[4] = 1;
        Val[5] = 9;
        Val[6] = 114;
        */
        boolean f = false;
        for(int i=0; i<=Val[0]; i++) {
            for(int j=0; j<=Val[1]; j++) {
                for(int k=0; k<=Val[2]; k++) {
                    for(int l=0; l<=Val[3]; l++) {
                        for(int m=0; m<=Val[4]; m++) {
                            for(int n=0; n<=Val[5]; n++) {
                                if(500*i+100*j+50*k+10*l+5*m+n == Val[6]) f = true;
                                //System.out.println(i+j+k+l+m+n);
                            }
                        }
                    }
                }
            }
        }
        if(f) System.out.println("YES");
        else System.out.println("NO");

        scanner.close();
    }
}
0