結果

問題 No.2737 Compound Word
ユーザー Shuban PalShuban Pal
提出日時 2024-04-20 11:36:37
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 1,283 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 30,080 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-12 07:01:51
合計ジャッジ時間 1,118 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <stdio.h>
#include <string.h>

int main() {
    int N;
    scanf("%d", &N);
    
    char strings[N][101]; // Array to store the strings
    for (int i = 0; i < N; i++) {
        scanf("%s", strings[i]);
    }

    int count = 0; // Variable to count the number of distinct concatenated strings

    // Iterate over each pair of strings and check if the concatenated string is distinct
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < N; j++) {
            if (i != j) {
                char concatenated[201]; // Array to store the concatenated string
                strcpy(concatenated, strings[i]);
                strcat(concatenated, strings[j]);

                // Check if the concatenated string is distinct from all previously formed strings
                int distinct = 1;
                for (int k = 0; k < N; k++) {
                    if (k != i && k != j && strcmp(concatenated, strings[k]) == 0) {
                        distinct = 0;
                        break;
                    }
                }

                // If the concatenated string is distinct, increment the count
                if (distinct) {
                    count++;
                }
            }
        }
    }

    printf("%d\n", count);

    return 0;
}
0