結果
| 問題 |
No.32 貯金箱の憂鬱
|
| コンテスト | |
| ユーザー |
aaa
|
| 提出日時 | 2018-10-07 09:22:19 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 5,000 ms |
| コード長 | 723 bytes |
| コンパイル時間 | 739 ms |
| コンパイル使用メモリ | 93,964 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-07-23 07:17:09 |
| 合計ジャッジ時間 | 1,253 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 12 |
ソースコード
#include <stdio.h>
#include <algorithm>
#include <iostream>
#include <string>
#include <vector>
#include <functional>
#include <map>
#include <iomanip>
#include <math.h>
#include <stack>
#include <queue>
#include <bitset>
#include <cstdlib>
#include <tuple>
#include <cctype>
#include <ctype.h>
#include <set>
#include <sstream>
using namespace std;
int main(){
int i, j, k;
int l, m, n;
int k100 = 0, k25 = 0, k1 = 0;
cin >> l >> m >> n;
int kane = l * 100 + m * 25 + n;
if (kane >= 1000) {
kane %= 1000;
}
if (kane >= 100) {
k100 = kane / 100;
}
kane %= 100;
if (kane >= 25) {
k25 = kane / 25;
}
kane %= 25;
cout << k100 + k25 + kane << endl;
getchar();
getchar();
return 0;
}
aaa