結果
問題 |
No.32 貯金箱の憂鬱
|
ユーザー |
![]() |
提出日時 | 2017-11-01 16:39:14 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 419 bytes |
コンパイル時間 | 803 ms |
コンパイル使用メモリ | 77,636 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-22 14:35:05 |
合計ジャッジ時間 | 1,257 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 5 WA * 7 |
ソースコード
#include <iostream> #include <vector> #include <string> #include <algorithm> #include <utility> #include <iomanip> #include <cmath> using namespace std; #define diff(x, y) ((x) > (y) ? ((x) - (y)) : ((y) - (x))) int main(void) { int h, t, o; cin >> h >> t >> o; if (o >= 25) { t += o / 25; o %= 25; } if (t >= 4) { h += t / 4; t %= 10; } if (h >= 10) h %= 10; cout << o + t + h << endl; return 0; }