結果

問題 No.32 貯金箱の憂鬱
ユーザー IchimiyaIchimiya
提出日時 2020-05-06 20:06:27
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 270 bytes
コンパイル時間 1,773 ms
コンパイル使用メモリ 167,408 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-23 01:57:11
合計ジャッジ時間 2,345 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
	int L, M, N;
	cin >> L >> M >> N;

	int s = 0;
	s = 100 * L + 25 * M + 1 * N;
	s %= 1000;

	int n100, n25, n1;
	n100 = s / 100;
	s %= 100;
	n25 = s / 25;
	s %= 25;
	n1 = s;

	cout << n100 + n25 + n1 << endl;
}
0