結果

問題 No.32 貯金箱の憂鬱
ユーザー キョウチク
提出日時 2019-02-25 15:06:01
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 418 bytes
コンパイル時間 508 ms
コンパイル使用メモリ 56,160 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-23 07:27:29
合計ジャッジ時間 1,037 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main() {
	int one, quarter, hundred, thousand = 0;
	cin >> hundred >> quarter >> one;
	while (one >= 25) {
		quarter++;
		one -= 25;
	}
	while (quarter >= 4) {
		hundred++;
		quarter -= 4;
	}
	while (hundred >= 10) {
		thousand++;
		hundred -= 10;
	}
	//cout << thousand << " " << hundred << " " << quarter << " " << one << endl;
	cout << one + quarter + hundred << endl;
}
0