結果
問題 | No.799 赤黒かーどげぇむ |
ユーザー | GinFizz1185 |
提出日時 | 2019-07-06 07:53:12 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 1,269 bytes |
コンパイル時間 | 351 ms |
コンパイル使用メモリ | 29,568 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-24 18:03:08 |
合計ジャッジ時間 | 928 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 1 ms
6,940 KB |
testcase_17 | AC | 1 ms
6,940 KB |
testcase_18 | AC | 1 ms
6,944 KB |
testcase_19 | AC | 1 ms
6,940 KB |
ソースコード
#include<stdio.h> #include<stdlib.h> #define STR_LENGTH 16 #define NUM_INPUT 4 void str_cut(char*, unsigned char*); int main(void){ unsigned char diff = 0; unsigned char same = 0; char str[STR_LENGTH]; unsigned char input[NUM_INPUT] = {0}; unsigned int ans = 0; fgets(str, sizeof(str), stdin); str_cut(str, input); if((input[3] < input[0]) || (input[1] < input[2])) { ans = (input[1] - input[0] + 1) * (input[3] - input[2] + 1); } else { diff = abs(input[2] - input[0]) + abs(input[3] - input[1]); same = ((input[1] - input[0] + 1) + (input[3] - input[2] + 1 - diff)) / 2; ans = (input[1] - input[0] + 1) * (input[3] - input[2] + 1) - same; } printf("%d\n", ans); 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; }