結果
| 問題 | No.32 貯金箱の憂鬱 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2014-10-18 22:16:25 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 478 bytes | 
| コンパイル時間 | 693 ms | 
| コンパイル使用メモリ | 70,788 KB | 
| 実行使用メモリ | 5,248 KB | 
| 最終ジャッジ日時 | 2024-12-30 09:33:56 | 
| 合計ジャッジ時間 | 1,492 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 3 WA * 9 | 
ソースコード
#include <iostream>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <algorithm>
#include <cstring>
#include <cstdio>
#include <fstream>
#include <sstream>
using namespace std;
typedef long long ll;
int main(){
    int L, M, N;
    cin >> L >> M >> N;
    
    int res = 0;
    
    M += L / 25;
    res += L % 25;
    
    N += M / 4;
    res += M % 4;
    
    res += N % 10;
    
    cout << res << endl;
    return 0;
}
            
            
            
        