結果
問題 | No.804 野菜が苦手 |
ユーザー |
![]() |
提出日時 | 2025-03-14 15:31:08 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 504 bytes |
コンパイル時間 | 232 ms |
コンパイル使用メモリ | 27,008 KB |
実行使用メモリ | 7,324 KB |
最終ジャッジ日時 | 2025-03-14 15:31:10 |
合計ジャッジ時間 | 1,263 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 15 WA * 3 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:6:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 6 | scanf("%d%d%d%d",&vegetables,&meat,&proportion,&all); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h>int main(){// 野菜の数・肉の数・比率・許容量int vegetables, meat, proportion, all;scanf("%d%d%d%d",&vegetables,&meat,&proportion,&all);if(meat == all){printf("0");}else if(vegetables + meat < all){int tmp = meat / proportion;if(tmp < vegetables){printf("%d",tmp);}else{printf("%d",vegetables);}}else{int tmp = all / (proportion + 1);if(tmp < vegetables){printf("%d",tmp);}else{printf("%d",vegetables);}}}