結果
| 問題 | No.32 貯金箱の憂鬱 |
| コンテスト | |
| ユーザー |
mono1977
|
| 提出日時 | 2016-12-01 12:26:54 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 5,000 ms |
| + 429µs | |
| コード長 | 199 bytes |
| 記録 | |
| コンパイル時間 | 90 ms |
| コンパイル使用メモリ | 36,992 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-08-23 17:14:43 |
| 合計ジャッジ時間 | 1,286 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 12 |
ソースコード
#include<stdio.h>
int main(){
int h,q,c;
scanf("%d%d%d",&h,&q,&c);
int total =0;
total += c %25;
q += c/25;
total += q % 4;
h += q/4;
total += h%10;
printf("%d\n",total);
return 0;
}
mono1977