結果
問題 | No.804 野菜が苦手 |
ユーザー | GinFizz1185 |
提出日時 | 2019-07-04 11:15:36 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 1,527 bytes |
コンパイル時間 | 95 ms |
コンパイル使用メモリ | 29,696 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-19 03:53:56 |
合計ジャッジ時間 | 753 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
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 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
ソースコード
#include<stdio.h> #include<stdlib.h> #define STR_LENGTH 16 #define NUM_INPUT 4 void str_cut(char*, unsigned char*); unsigned char judge_vegnun(unsigned char*); int main(void){ unsigned char veg_num = 0; char str[STR_LENGTH]; unsigned char input[NUM_INPUT] = {0}; /* 入力を数値に変換したデータ保管 */ fgets(str, sizeof(str), stdin); str_cut(str, input); veg_num = judge_vegnun(input); printf("%d\n", veg_num); return 0; } /* 関数概要:渡された文字列を空白で分離し、数値に変換する 第1引数:文字列 第2引数:文字列から数値に変換して格納する配列 */ void str_cut(char* str, unsigned char* input){ int start_str = 0; int num = 0; //配列NO int i = 0; while('\0' != str[i]){ if(' ' == str[i]){ str[i] = '\0'; input[num] = (unsigned char) atoi(&str[start_str]); ++num; ++i; start_str = i; } ++i; } input[num] = (unsigned char) atoi(&str[start_str]); return; } /* 関数概要:渡された数値から野菜の最大摂取量を計算する 第1引数:与えられた数値 戻り値:食べられる野菜の個数 */ unsigned char judge_vegnun(unsigned char* input){ unsigned char veg_max = 0; unsigned char ret = 0; veg_max = (unsigned char) (input[3] / (input[2] + 1)); if(veg_max > input[0]){ veg_max = input[0]; } if((veg_max * input[2] <= input[1])){ ret = veg_max; } else { ret = (unsigned char) (input[1] / input[2]); } return ret; }