結果
問題 | No.2737 Compound Word |
ユーザー | Shuban Pal |
提出日時 | 2024-04-20 11:39:52 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,560 bytes |
コンパイル時間 | 508 ms |
コンパイル使用メモリ | 29,696 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-12 07:02:41 |
合計ジャッジ時間 | 1,045 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
5,248 KB |
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 | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
ソースコード
#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 adjacent strings and check if the concatenated string is distinct for (int i = 1; i < N; i++) { char concatenated[201]; // Array to store the concatenated string strcpy(concatenated, strings[i]); strcat(concatenated, strings[i-1]); // Check if the concatenated string is distinct from the previous concatenated string int distinct = 1; for (int k = 0; k < i; k++) { if (strcmp(concatenated, strings[k]) == 0) { distinct = 0; break; } } // If the concatenated string is distinct, increment the count if (distinct) { count++; } // Concatenate the strings in the reverse order and check if it's distinct strcpy(concatenated, strings[i-1]); strcat(concatenated, strings[i]); distinct = 1; for (int k = 0; k < i; k++) { if (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; }