結果

問題 No.224 文字列変更(easy)
ユーザー Himatsubushin
提出日時 2024-03-14 15:11:15
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 273 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 28,416 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-09-29 23:43:12
合計ジャッジ時間 1,049 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>

int main(void) {
	int i, c = 0;
	char s[1001], t[1001];

	scanf("%d", &i);
	scanf("%s", s);
	scanf("%s", t);

	for (i = 0; s[i] != '\0'; i++)
		if (s[i] != t[i]) c++;

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

	return EXIT_SUCCESS;
}
0