結果

問題 No.224 文字列変更(easy)
ユーザー asdfghjkl;
提出日時 2019-10-09 13:39:57
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 199 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 28,032 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-16 10:37:58
合計ジャッジ時間 1,150 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1 WA * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
int main(void){
    int a,b=0;
    char s[1000],ss[1000];
    scanf("%s",s);
    scanf("%s",ss);
    for(a=0;s[a]!='\0';a++){
        if(s[a]!=ss[a]){b++;}
    }printf("%d\n",b);
}
0