結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | takumin0616 |
提出日時 | 2021-03-28 07:35:00 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 380 bytes |
コンパイル時間 | 1,025 ms |
コンパイル使用メモリ | 28,544 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-06 22:07:09 |
合計ジャッジ時間 | 1,495 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 0 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
#include<stdio.h> int main(){ int a,b,c,x; int m=0; scanf("%d",&a); x=a*100; scanf("%d",&b); x+=b*25; scanf("%d",&c); x+=c; while(x > 1000){ x-=1000; } while(x > 100){ x-=100; m++; } while(x > 25){ x-=25; m++; } while(x > 0){ x-=1; m++; } printf("%d",m); }