結果

問題 No.842 初詣
ユーザー iwa_choco_168iwa_choco_168
提出日時 2019-12-09 20:52:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 660 bytes
コンパイル時間 2,749 ms
コンパイル使用メモリ 75,584 KB
実行使用メモリ 41,456 KB
最終ジャッジ日時 2024-06-23 05:34:10
合計ジャッジ時間 6,411 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
40,824 KB
testcase_01 AC 121 ms
41,456 KB
testcase_02 AC 116 ms
40,864 KB
testcase_03 AC 124 ms
40,920 KB
testcase_04 AC 112 ms
40,680 KB
testcase_05 AC 118 ms
41,104 KB
testcase_06 AC 128 ms
41,032 KB
testcase_07 AC 121 ms
40,884 KB
testcase_08 AC 106 ms
40,220 KB
testcase_09 AC 114 ms
39,828 KB
testcase_10 AC 113 ms
39,896 KB
testcase_11 AC 113 ms
40,036 KB
testcase_12 AC 124 ms
41,144 KB
testcase_13 AC 121 ms
41,004 KB
testcase_14 AC 107 ms
40,052 KB
testcase_15 AC 125 ms
41,344 KB
testcase_16 AC 114 ms
41,204 KB
testcase_17 AC 109 ms
39,916 KB
testcase_18 AC 124 ms
41,308 KB
testcase_19 AC 121 ms
41,152 KB
testcase_20 AC 119 ms
41,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int[] coin = new int[6];
        for(int i = 0; i < 6; i++) coin[i] = Integer.parseInt(sc.next());
        int[] money = {500, 100, 50, 10, 5, 1};
        int x = Integer.parseInt(sc.next());
        boolean flag = false;
        int temp;
        for(int i = 0; i < 6; i++) {
            temp = Math.min(coin[i], x / money[i]);
            x -= temp * money[i];
            if(x == 0) {
                flag = true;
                break;
            }
        }
        System.out.println((flag)? "YES" : "NO");
    }
}
0