結果
| 問題 | No.32 貯金箱の憂鬱 | 
| コンテスト | |
| ユーザー |  miku39kk | 
| 提出日時 | 2017-08-05 00:42:08 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 5,000 ms | 
| コード長 | 382 bytes | 
| コンパイル時間 | 567 ms | 
| コンパイル使用メモリ | 63,496 KB | 
| 実行使用メモリ | 6,944 KB | 
| 最終ジャッジ日時 | 2024-07-23 06:25:32 | 
| 合計ジャッジ時間 | 1,137 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 12 | 
ソースコード
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <math.h>
using namespace std;
int main() {
    int l,m,n,money = 0,ans = 0;
    cin >> l >> m >> n;
    money = l * 100 + m * 25 + n;
    money %= 1000;
    ans+= money / 100;
    money %= 100;
    ans += money / 25;
    money %= 25;
    ans += money;
    cout << ans << endl;
    return 0;
}
            
            
            
        