結果

問題 No.804 野菜が苦手
ユーザー sasa
提出日時 2025-03-14 15:21:41
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 493 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 27,648 KB
実行使用メモリ 7,328 KB
最終ジャッジ日時 2025-03-14 15:21:43
合計ジャッジ時間 1,331 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other AC * 3 WA * 15
権限があれば一括ダウンロードができます
コンパイルメッセージ
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);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int main(){
	// 野菜の数・肉の数・比率・許容量
	int vegetables, meat, proportion, all;
	scanf("%d%d%d%d",&vegetables,&meat,&proportion,&all);
	// 野菜を食べた個数
	int count = 0;
	int i = 0;
	while( i != all){
		if(meat > proportion){
			i += proportion;
			meat -= proportion;
		}
		if(vegetables != 0){
			vegetables -= 1;
			i++;
			count++;
		}
		if(meat == 0 || vegetables == 0){
			printf("%d",count);
			return 0;
		}
	}
	printf("%d",count);
}
0