結果

問題 No.22 括弧の対応
ユーザー gorugogorugo
提出日時 2024-05-27 20:37:37
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 793 bytes
コンパイル時間 480 ms
コンパイル使用メモリ 29,696 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-27 20:37:39
合計ジャッジ時間 1,607 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main(void) {

    typedef struct {
        char kakko;
        int num;
    } Kakko;

    char input[] = "(())";
    int len = 4;
    int n = 4;
    int i = 0;
    int answer;

    n = n - 1; 

    Kakko array[len];

    for (int i = 0; i < len; i++) {
        array[i].kakko = input[i];
        array[i].num = i;
    }

    while (len != 0) {
        if ( array[i].kakko == ')') {
            if (array[i - 1].num == n) {
                answer = array[i].num;
            } else if (array[i].num == n) {
                answer = array[i - 1].num;
            }

            for (i; i < len - 1; i++) {
                array[i - 1] = array[i + 1];
            }
        len -= 2;
        i = 0;
        }
        i++;
    }
    answer += 1;
    printf("%d", answer);
}
0