結果

問題 No.32 貯金箱の憂鬱
ユーザー komori3komori3
提出日時 2017-08-21 00:32:17
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 295 bytes
コンパイル時間 453 ms
コンパイル使用メモリ 55,588 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-23 00:54:04
合計ジャッジ時間 971 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <string>

using namespace std;
typedef long long int lint;

int main()
{
	lint L, M, N, T, S = 0;
	cin >> L >> M >> N;
	T = L * 100 + M * 25 + N;
	S += T / 1000;
	T %= 1000;
	S += T / 100;
	T %= 100;
	S += T / 25;
	T %= 25;
	S += T;
	cout << S << endl;

	return 0;
}
0