結果

問題 No.32 貯金箱の憂鬱
ユーザー Kurichan0806Kurichan0806
提出日時 2017-11-01 16:39:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 419 bytes
コンパイル時間 765 ms
コンパイル使用メモリ 77,388 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-02 04:11:15
合計ジャッジ時間 1,284 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <utility>
#include <iomanip>
#include <cmath>
using namespace std;
#define diff(x, y) ((x) > (y) ? ((x) - (y)) : ((y) - (x)))

int main(void) {
	int h, t, o;
	cin >> h >> t >> o;
	if (o >= 25) {
		t += o / 25;
		o %= 25;
	}
	if (t >= 4) {
		h += t / 4;
		t %= 10;
	}
	if (h >= 10)
		h %= 10;
	cout << o + t + h << endl;
	return 0;
}
0