結果

問題 No.32 貯金箱の憂鬱
ユーザー knk
提出日時 2017-09-17 15:33:40
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 428 bytes
コンパイル時間 1,714 ms
コンパイル使用メモリ 167,204 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-23 06:44:11
合計ジャッジ時間 2,334 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef unsigned long long ul;
typedef signed long long ll;
ul over = 1000000007;

int main(void)
{
  cin.tie(0);
  ios::sync_with_stdio(false);
  cout << fixed;
  ll l, m, n;
  cin >> l >> m >> n;
  ll sum = l * 100 + m * 25 + n;
  ll ans = 0;
  sum = sum%1000;
  ans += sum/100;
  sum = sum%100;
  ans += sum/25;
  sum = sum%25;
  ans += sum;
  cout << ans << endl;
  return 0;
}
0