結果

問題 No.825 賢いお買い物
ユーザー tsunabittsunabit
提出日時 2019-08-07 18:42:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 927 bytes
コンパイル時間 3,439 ms
コンパイル使用メモリ 77,820 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-07-18 18:46:44
合計ジャッジ時間 7,366 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,204 KB
testcase_01 AC 134 ms
41,368 KB
testcase_02 AC 128 ms
41,228 KB
testcase_03 AC 128 ms
41,324 KB
testcase_04 AC 125 ms
41,280 KB
testcase_05 AC 131 ms
41,228 KB
testcase_06 AC 128 ms
41,132 KB
testcase_07 AC 125 ms
40,768 KB
testcase_08 AC 130 ms
41,284 KB
testcase_09 AC 129 ms
41,332 KB
testcase_10 AC 128 ms
41,320 KB
testcase_11 AC 119 ms
40,188 KB
testcase_12 AC 119 ms
39,908 KB
testcase_13 AC 127 ms
41,212 KB
testcase_14 AC 128 ms
41,280 KB
testcase_15 AC 128 ms
41,284 KB
testcase_16 AC 131 ms
41,292 KB
testcase_17 AC 129 ms
41,148 KB
testcase_18 AC 130 ms
41,236 KB
testcase_19 AC 131 ms
41,264 KB
testcase_20 AC 129 ms
41,600 KB
testcase_21 AC 128 ms
41,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No825 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int a = sc.nextInt(), b = sc.nextInt(), c = sc.nextInt();
    	int kin = 999;
    	int max = a + (10 * b);
    	
    	for(int k = 1; k <= max; k++) {
    		for(int i = 0; i <= a; i++) {
        		for(int j = 0; j <= b; j++) {
        			int temp = i + (10 * j);
        			if(k > temp || temp == 0) {
        				continue;
        			}else {
        				int zan = temp - k;
        				int mai;
        				if(zan >= 10) mai = (zan / 10) + (zan % 10);
        				else mai = zan;
        				
        				if(c == (a + b - i - j + mai) && kin > k) {
        					kin = k;
        				}
        			}
        		}
        	}
    	}
    	
    	if(kin == 999) {
    		System.out.println("Impossible");
    	}else {
    		System.out.println(kin);
    	}
    }
}
0