結果

問題 No.2681 ゲームセンターの両替
ユーザー 2475057t2475057t
提出日時 2024-08-04 18:36:03
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 1,146 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 29,568 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-04 18:36:04
合計ジャッジ時間 1,356 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 1 ms
6,944 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 1 ms
6,944 KB
testcase_25 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.2681 ゲームセンターの両替
#include <stdio.h>

int judge(int, int);
int change(int, int);

int main(void){
    int C, Y;
    scanf("%d %d", &C, &Y);

    switch(judge(C, Y)){
        case 1: printf("can't exchange\n");
                break;
        case 2: printf("no exchange\n");
                break;
        case 3: printf("%d\n", change(C, Y));
                break;           
    }

    return 0;
}

int judge(int C, int Y){
    if(C == 0){
        return 2;
    }else if(Y < 100 * C){
        return 1;
    }else if((Y % 1000) / 100 < C){
        return 3;
    }else{
        int j = (Y % 1000) / 100;
        if(j == 5 || j == 0){
            return 3;
        }else if(j >= 5){
            int i = j - 5;
            if(i >= C){
                return 2;
            }else{
                return 3;
            }
        }else{
            if(j >= C){
                return 2;
            }else{
                return 3;
            }
        }
    }
}

int change(int C, int Y){
    int cnt = 0;
    Y = Y - 100 * C;
    cnt += C;
    int num = Y / 500;
    Y = Y - 500 * num;
    cnt += Y / 100;

    return cnt;
}
0