結果
| 問題 | No.32 貯金箱の憂鬱 | 
| コンテスト | |
| ユーザー |  yuasa0000 | 
| 提出日時 | 2019-02-25 15:37:41 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 253 bytes | 
| コンパイル時間 | 529 ms | 
| コンパイル使用メモリ | 54,696 KB | 
| 実行使用メモリ | 6,820 KB | 
| 最終ジャッジ日時 | 2024-12-26 04:31:24 | 
| 合計ジャッジ時間 | 1,200 ms | 
| ジャッジサーバーID (参考情報) | judge4 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 4 WA * 8 | 
ソースコード
#include <iostream>
int main() {
	int L,M,N;
	std::cin >> L >> M >> N;
	while(N >= 100){
	    M++;
	    N-=100;
	}
	while(M >= 4){
	    L++;
	    M-=4;
	}
	while(L >= 10){
	    L-=10;
	}
	int count = L+M+N;
	std::cout << count << std::endl;
	return 0;
}
            
            
            
        