結果

問題 No.2681 ゲームセンターの両替
ユーザー ks2mks2m
提出日時 2024-03-20 21:18:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 1,875 ms
コンパイル使用メモリ 74,420 KB
実行使用メモリ 54,168 KB
最終ジャッジ日時 2024-10-05 04:04:09
合計ジャッジ時間 5,604 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,704 KB
testcase_01 AC 115 ms
54,036 KB
testcase_02 AC 102 ms
52,952 KB
testcase_03 AC 110 ms
53,764 KB
testcase_04 AC 104 ms
52,788 KB
testcase_05 AC 114 ms
53,992 KB
testcase_06 AC 105 ms
52,600 KB
testcase_07 AC 114 ms
53,884 KB
testcase_08 AC 118 ms
53,604 KB
testcase_09 AC 103 ms
52,752 KB
testcase_10 AC 117 ms
53,760 KB
testcase_11 AC 114 ms
53,772 KB
testcase_12 AC 114 ms
53,792 KB
testcase_13 AC 113 ms
53,092 KB
testcase_14 AC 109 ms
52,904 KB
testcase_15 AC 100 ms
52,444 KB
testcase_16 AC 117 ms
53,952 KB
testcase_17 AC 119 ms
53,776 KB
testcase_18 AC 113 ms
53,684 KB
testcase_19 AC 116 ms
54,168 KB
testcase_20 AC 102 ms
52,916 KB
testcase_21 AC 119 ms
53,648 KB
testcase_22 AC 114 ms
53,916 KB
testcase_23 AC 108 ms
52,868 KB
testcase_24 AC 102 ms
52,516 KB
testcase_25 AC 118 ms
53,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

		int a = y / 100;
		if (a < c) {
			System.out.println("can't exchange");
			return;
		}

		int b = a % 5;
		if (c <= b) {
			System.out.println("no exchange");
			return;
		}

		for (int x = c; ; x++) {
			if (x % 5 == b) {
				System.out.println(x);
				return;
			}
		}
	}
}
0