結果

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

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <string>
using namespace std;

int main() {
	int l, m, n, c[3],ans, c_2;
	cin >> l;
	cin >> m;
	cin >> n;
	
	c[3] = n % 25;
	c_2 = ((n-c[3])/25 + m);
	c[2] = c_2 % 4;
	c[1] = ((c_2 - c[2])/4+l) % 10;
	
	ans = c[1] + c[2] + c[3];
	
	cout << ans << endl;
	
	return 0;
}
0