結果

問題 No.825 賢いお買い物
ユーザー GrenacheGrenache
提出日時 2019-05-04 12:54:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 1,038 bytes
コンパイル時間 4,575 ms
コンパイル使用メモリ 78,296 KB
実行使用メモリ 55,968 KB
最終ジャッジ日時 2024-06-13 03:20:02
合計ジャッジ時間 7,197 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,868 KB
testcase_01 AC 124 ms
53,872 KB
testcase_02 AC 121 ms
54,000 KB
testcase_03 AC 113 ms
52,884 KB
testcase_04 AC 125 ms
53,840 KB
testcase_05 AC 115 ms
54,212 KB
testcase_06 AC 116 ms
53,856 KB
testcase_07 AC 118 ms
54,180 KB
testcase_08 AC 122 ms
55,968 KB
testcase_09 AC 118 ms
53,884 KB
testcase_10 AC 119 ms
54,064 KB
testcase_11 AC 119 ms
54,408 KB
testcase_12 AC 126 ms
54,064 KB
testcase_13 AC 132 ms
53,948 KB
testcase_14 AC 127 ms
54,000 KB
testcase_15 AC 122 ms
54,176 KB
testcase_16 AC 127 ms
54,176 KB
testcase_17 AC 118 ms
52,944 KB
testcase_18 AC 130 ms
54,236 KB
testcase_19 AC 121 ms
54,016 KB
testcase_20 AC 106 ms
52,816 KB
testcase_21 AC 118 ms
53,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Scanner;


public class Main_yukicoder825 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int a = sc.nextInt();
		int b = sc.nextInt();
		int c = sc.nextInt();

		int min = Integer.MAX_VALUE;
		for (int aa = 0; aa <= a; aa++) {
			for (int bb = 0; bb <= b; bb++) {
				int pay = aa + 10 * bb;
				for (int i = 1; i <= pay; i++) {
					int cnt = a - aa + b - bb;
					cnt += (pay - i) / 10;
					cnt += (pay - i) % 10;
					if (cnt == c) {
//						pr.printf("%d %d %d %d%n", aa, bb, pay, i);
						min = Math.min(min, i);
					}
				}
			}
		}
		
		if (min == Integer.MAX_VALUE) {
			pr.println("Impossible");
		} else {
			pr.println(min);
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);
			
		solve();
			
		pr.close();
		sc.close();
	}

	static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0