結果

問題 No.2681 ゲームセンターの両替
ユーザー tentententen
提出日時 2024-03-25 09:50:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 1,263 bytes
コンパイル時間 2,290 ms
コンパイル使用メモリ 79,060 KB
実行使用メモリ 50,456 KB
最終ジャッジ日時 2024-10-05 04:15:58
合計ジャッジ時間 3,940 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,200 KB
testcase_01 AC 46 ms
50,456 KB
testcase_02 AC 47 ms
50,316 KB
testcase_03 AC 46 ms
49,812 KB
testcase_04 AC 47 ms
49,912 KB
testcase_05 AC 46 ms
50,276 KB
testcase_06 AC 46 ms
49,920 KB
testcase_07 AC 46 ms
50,024 KB
testcase_08 AC 46 ms
50,024 KB
testcase_09 AC 46 ms
49,852 KB
testcase_10 AC 46 ms
50,144 KB
testcase_11 AC 46 ms
50,320 KB
testcase_12 AC 47 ms
49,972 KB
testcase_13 AC 46 ms
50,288 KB
testcase_14 AC 49 ms
49,936 KB
testcase_15 AC 48 ms
50,200 KB
testcase_16 AC 45 ms
49,964 KB
testcase_17 AC 46 ms
50,280 KB
testcase_18 AC 47 ms
49,692 KB
testcase_19 AC 48 ms
50,168 KB
testcase_20 AC 48 ms
50,136 KB
testcase_21 AC 48 ms
50,252 KB
testcase_22 AC 46 ms
50,188 KB
testcase_23 AC 47 ms
50,216 KB
testcase_24 AC 48 ms
49,996 KB
testcase_25 AC 47 ms
50,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int c = sc.nextInt();
        int target = sc.nextInt() / 100;
        System.out.println(c > target ? "can't exchange" : (target % 5 >= c ? "no exchange" : (target - c) % 5 + c));
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0