結果

問題 No.825 賢いお買い物
ユーザー ks2mks2m
提出日時 2019-05-03 21:46:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 705 bytes
コンパイル時間 1,796 ms
コンパイル使用メモリ 74,272 KB
実行使用メモリ 54,460 KB
最終ジャッジ日時 2024-06-10 06:33:41
合計ジャッジ時間 5,187 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
53,084 KB
testcase_01 AC 114 ms
53,780 KB
testcase_02 AC 103 ms
52,824 KB
testcase_03 AC 120 ms
53,872 KB
testcase_04 AC 126 ms
54,032 KB
testcase_05 AC 122 ms
53,856 KB
testcase_06 AC 126 ms
54,092 KB
testcase_07 AC 122 ms
53,880 KB
testcase_08 AC 128 ms
53,788 KB
testcase_09 AC 127 ms
53,660 KB
testcase_10 AC 129 ms
54,176 KB
testcase_11 AC 131 ms
54,148 KB
testcase_12 AC 127 ms
53,820 KB
testcase_13 AC 115 ms
53,608 KB
testcase_14 AC 112 ms
54,168 KB
testcase_15 AC 108 ms
52,520 KB
testcase_16 AC 122 ms
53,788 KB
testcase_17 AC 115 ms
53,612 KB
testcase_18 AC 113 ms
53,928 KB
testcase_19 AC 116 ms
54,064 KB
testcase_20 AC 120 ms
54,048 KB
testcase_21 AC 107 ms
54,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		int c = sc.nextInt();
		sc.close();

		if (b == 0) {
			if (a <= c) {
				System.out.println("Impossible");
				return;
			}
		} else {
			if (a + b + 8 < c) {
				System.out.println("Impossible");
				return;
			}
		}

		if (b >= c && a != 0) {
			System.out.println(10 * (b - c) + a);
		} else {
			if (a + b > c) {
				while (a >= 10 && a + b - c >= 10) {
					a -= 10;
					b++;
				}
				System.out.println(a + b - c);
			} else {
				a += 9;
				b--;
				System.out.println(a + b - c + 1);
			}
		}
	}
}
0