結果
| 問題 | No.32 貯金箱の憂鬱 | 
| コンテスト | |
| ユーザー |  focus | 
| 提出日時 | 2018-01-30 23:19:32 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 338 bytes | 
| コンパイル時間 | 1,148 ms | 
| コンパイル使用メモリ | 62,576 KB | 
| 実行使用メモリ | 5,248 KB | 
| 最終ジャッジ日時 | 2024-12-29 21:52:51 | 
| 合計ジャッジ時間 | 1,291 ms | 
| ジャッジサーバーID (参考情報) | judge3 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 1 WA * 11 | 
ソースコード
#include<iostream>
#include<vector>
#include<algorithm>
#include<cstdio>
#include<cmath>
#include<string>
using namespace std;
int main(){
    int L,M,N,sum=0;
    cin >> L >> M >> N;
    M += (N / 25);
    sum += (N % 25);
    L += (M / 4);
    sum += (M % 4);
    sum += (L / 10);
    sum += (L % 10);
    cout << sum; 
    return 0;
}
            
            
            
        