結果

問題 No.547 未知の言語
ユーザー shallowshallow
提出日時 2017-10-18 15:24:31
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 377 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 28,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-26 02:51:43
合計ジャッジ時間 4,024 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

int main() {
    int N, i;
    char S[N][20];
    char T[20];
    scanf("%d", &N);
    for (i = 0; i < N; i++) {
        scanf("%s", S[i]);
    }
    for (i = 0; i < N; i++) {
        scanf("%s", T);
        if (strcmp(S[i], T) != 0) {
            printf("%d\n%s\n%s\n", i+1, S[i], T);
            break;
        }
    }
    return 0;
}
0