結果
| 問題 | No.32 貯金箱の憂鬱 |
| コンテスト | |
| ユーザー |
focus
|
| 提出日時 | 2018-01-30 23:19:32 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 338 bytes |
| 記録 | |
| コンパイル時間 | 601 ms |
| コンパイル使用メモリ | 85,332 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-06-03 15:33:36 |
| 合計ジャッジ時間 | 1,603 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 WA * 11 |
ソースコード
#include<iostream>
#include<vector>
#include<algorithm>
#include<cstdio>
#include<cmath>
#include<string>
using namespace std;
int main(){
int L,M,N,sum=0;
cin >> L >> M >> N;
M += (N / 25);
sum += (N % 25);
L += (M / 4);
sum += (M % 4);
sum += (L / 10);
sum += (L % 10);
cout << sum;
return 0;
}
focus