結果

問題 No.825 賢いお買い物
ユーザー shinwisteriashinwisteria
提出日時 2019-08-30 16:27:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 660 bytes
コンパイル時間 3,472 ms
コンパイル使用メモリ 75,292 KB
実行使用メモリ 43,596 KB
最終ジャッジ日時 2024-11-21 12:42:07
合計ジャッジ時間 7,208 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
43,180 KB
testcase_01 AC 125 ms
43,188 KB
testcase_02 AC 119 ms
42,068 KB
testcase_03 AC 124 ms
43,116 KB
testcase_04 AC 121 ms
43,596 KB
testcase_05 WA -
testcase_06 AC 125 ms
41,264 KB
testcase_07 AC 115 ms
40,096 KB
testcase_08 AC 116 ms
40,232 KB
testcase_09 AC 129 ms
41,712 KB
testcase_10 AC 126 ms
41,124 KB
testcase_11 AC 127 ms
41,496 KB
testcase_12 AC 124 ms
41,428 KB
testcase_13 AC 115 ms
40,156 KB
testcase_14 AC 124 ms
41,512 KB
testcase_15 AC 119 ms
40,132 KB
testcase_16 AC 126 ms
41,324 KB
testcase_17 AC 123 ms
41,420 KB
testcase_18 AC 124 ms
41,272 KB
testcase_19 AC 116 ms
41,196 KB
testcase_20 AC 116 ms
40,352 KB
testcase_21 AC 112 ms
40,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package con_level_1half;
import java.util.Scanner;
public class Con825 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int a = s.nextInt() , b = s.nextInt() , c = s.nextInt();
		s.close();

		if(c >= a + b){
			System.out.println("Impossible");
		}else{
			int d = a + b - c;
			if(d < 10){
				if(d <= a){
					System.out.println(d);
				}else{
					System.out.println(a + (d - a) * 10);
				}
			}else{
				if(a > d){
					System.out.println((d + 1) % 10);
				}else{
					if(a > 10){
						System.out.println(a % 10 + (d - a + 1) * 10);
					}else{
						System.out.println(a + (d - a) * 10);
					}
				}
			}
		}
	}

}
0