結果

問題 No.158 奇妙なお使い
ユーザー GrenacheGrenache
提出日時 2016-06-21 23:52:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,937 ms / 5,000 ms
コード長 2,325 bytes
コンパイル時間 3,297 ms
コンパイル使用メモリ 77,100 KB
実行使用メモリ 115,928 KB
最終ジャッジ日時 2024-06-29 14:04:18
合計ジャッジ時間 35,922 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 444 ms
78,240 KB
testcase_01 AC 822 ms
87,120 KB
testcase_02 AC 300 ms
69,744 KB
testcase_03 AC 1,303 ms
92,936 KB
testcase_04 AC 1,500 ms
113,040 KB
testcase_05 AC 173 ms
54,132 KB
testcase_06 AC 1,289 ms
113,336 KB
testcase_07 AC 139 ms
53,724 KB
testcase_08 AC 334 ms
86,044 KB
testcase_09 AC 1,308 ms
95,088 KB
testcase_10 AC 1,017 ms
94,608 KB
testcase_11 AC 1,318 ms
113,204 KB
testcase_12 AC 879 ms
88,472 KB
testcase_13 AC 890 ms
88,648 KB
testcase_14 AC 1,435 ms
92,680 KB
testcase_15 AC 1,294 ms
113,280 KB
testcase_16 AC 1,509 ms
113,188 KB
testcase_17 AC 1,937 ms
113,516 KB
testcase_18 AC 808 ms
88,712 KB
testcase_19 AC 1,397 ms
92,876 KB
testcase_20 AC 1,016 ms
115,632 KB
testcase_21 AC 1,060 ms
113,276 KB
testcase_22 AC 1,024 ms
113,204 KB
testcase_23 AC 1,742 ms
115,928 KB
testcase_24 AC 1,761 ms
113,204 KB
testcase_25 AC 394 ms
94,108 KB
testcase_26 AC 596 ms
86,368 KB
testcase_27 AC 661 ms
90,872 KB
testcase_28 AC 1,267 ms
90,744 KB
testcase_29 AC 277 ms
88,656 KB
testcase_30 AC 890 ms
90,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;


public class Main_yukicoder158_1 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int a1000 = sc.nextInt();
        int a100 = sc.nextInt();
        int a1 = sc.nextInt();

        int db = sc.nextInt();
        int b1000 = sc.nextInt();
        int b100 = sc.nextInt();
        int b1 = sc.nextInt();

        int dc = sc.nextInt();
        int c1000 = sc.nextInt();
        int c100 = sc.nextInt();
        int c1 = sc.nextInt();

        int sum = a1000 * 1000 + a100 * 100 + a1;
        int[][][] dp = new int[10 + 1][100 + 1][sum + 1];

        for (int da = Math.min(db, dc); da <= sum; da++) {
        	for (int ia = 0; ia <= 10; ia++) {
        		for (int ja = 0; ja <= 100; ja++) {
        	    	if (da >= db) {
        	    		for (int i = ia; i >= 0; i--) {
        	    			if (i * 1000 > db) {
        	    				continue;
        	    			}
        	    			if (da - (ia - i) * 1000 < db) {
        	    				break;
        	    			}
        	    			for (int j = ja; j >= 0; j--) {
        	    				if (i * 1000 + j * 100 > db) {
        	    					continue;
        	    				}
        	        			if (da - (ia - i) * 1000 - (ja - j) * 100 < db) {
        	        				break;
        	        			}

        	        			dp[ia][ja][da] = Math.max(dp[ia][ja][da], dp[ia - i + b1000][ja - j + b100][da - db + b1000 * 1000 + b100 * 100 + b1] + 1);
        	    			}
        	    		}
        	    	}

        	    	if (da >= dc) {
        	    		for (int i = ia; i >= 0; i--) {
        	    			if (i * 1000 > dc) {
        	    				continue;
        	    			}
        	    			if (da - (ia - i) * 1000 < dc) {
        	    				break;
        	    			}
        	    			for (int j = ja; j >= 0; j--) {
        	    				if (i * 1000 + j * 100 > dc) {
        	    					continue;
        	    				}
        	        			if (da - (ia - i) * 1000 - (ja - j) * 100 < dc) {
        	        				break;
        	        			}

        	        			dp[ia][ja][da] = Math.max(dp[ia][ja][da], dp[ia - i + c1000][ja - j + c100][da - dc + c1000 * 1000 + c100 * 100 + c1] + 1);
        	    			}
        	    		}
        	    	}
        		}
        	}
        }

        System.out.println(dp[a1000][a100][a1000 * 1000 + a100 * 100 + a1]);

        sc.close();
    }
}
0