結果
| 問題 |
No.32 貯金箱の憂鬱
|
| コンテスト | |
| ユーザー |
siguma323
|
| 提出日時 | 2016-05-08 18:56:04 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 497 bytes |
| コンパイル時間 | 697 ms |
| コンパイル使用メモリ | 82,680 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-10-05 10:48:20 |
| 合計ジャッジ時間 | 1,376 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 3 WA * 9 |
ソースコード
#include <vector>
#include <string>
#include <algorithm>
#include <numeric>
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <utility>
#include <list>
#include <map>
#include <set>
#include <queue>
#include <iterator>
#include <cmath>
#include <iomanip>
using namespace std;
using ull = unsigned long long;
using ll = long long;
int main()
{
int l,m,n;
cin >> l >> m >> n;
m += l/25;
l%=25;
n += m/4;
m%=4;
n%=10;
cout << l + m + n << endl;
}
siguma323