結果

問題 No.32 貯金箱の憂鬱
ユーザー ontama_12ontama_12
提出日時 2016-09-29 17:44:51
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 75 ms / 5,000 ms
コード長 976 bytes
コンパイル時間 57 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 38,912 KB
最終ジャッジ日時 2024-07-23 02:24:57
合計ジャッジ時間 1,475 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
38,784 KB
testcase_01 AC 70 ms
38,912 KB
testcase_02 AC 66 ms
38,912 KB
testcase_03 AC 66 ms
38,528 KB
testcase_04 AC 63 ms
38,784 KB
testcase_05 AC 65 ms
38,784 KB
testcase_06 AC 66 ms
38,656 KB
testcase_07 AC 64 ms
38,656 KB
testcase_08 AC 65 ms
38,656 KB
testcase_09 AC 66 ms
38,528 KB
testcase_10 AC 65 ms
38,528 KB
testcase_11 AC 64 ms
38,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

  /////////////////////////////////No.32 貯金箱の憂鬱
    //入力文字読み取り
    var inputall = require('fs').readFileSync('/dev/stdin', 'utf8');

    //すべて受け取り空白で区切って格納
    var input = inputall.split("\n");

    var input_hundred = Number(input[0]);
    var input_quotor = Number(input[1]);
    var input_one = Number(input[2]);

    //所持金を出す
    var possession = input_hundred * 100 + input_quotor * 25 + input_one;

    //所持金から硬貨分のお金を引きつつ硬貨のカウントを行う
    var count=0
    while (true) {
        if(possession < 1000){
            break;
        }
        possession-=1000
    }
    while (true) {
        if (possession < 100) {
            break;
        }
        possession -= 100
        count++
    }
    while (true) {
        if (possession < 25) {
            break;
        }
        possession -= 25
        count++
    }
    console.log(count +possession)
0