結果
| 問題 | No.32 貯金箱の憂鬱 |
| コンテスト | |
| ユーザー |
キョウチク
|
| 提出日時 | 2019-02-25 15:05:37 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 429 bytes |
| 記録 | |
| コンパイル時間 | 395 ms |
| コンパイル使用メモリ | 71,152 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-05-31 21:22:32 |
| 合計ジャッジ時間 | 1,344 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 WA * 11 |
ソースコード
#include <iostream>
using namespace std;
int main() {
int one, quarter, hundred, thousand = 0;
cin >> hundred >> quarter >> one;
while (one >= 25) {
quarter++;
one -= 25;
}
while (quarter >= 4) {
hundred++;
quarter -= 4;
}
while (hundred >= 10) {
thousand++;
hundred -= 10;
}
//cout << thousand << " " << hundred << " " << quarter << " " << one << endl;
cout << one + quarter + hundred + thousand << endl;
}
キョウチク