結果
| 問題 |
No.224 文字列変更(easy)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-03-12 20:11:36 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 226 bytes |
| コンパイル時間 | 741 ms |
| コンパイル使用メモリ | 27,648 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-30 00:34:18 |
| 合計ジャッジ時間 | 1,448 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 WA * 21 |
ソースコード
#include <stdio.h>
int main(){
char e[10000],f[10000];
int i,cnt=0;
scanf("%s",e);
rewind(stdin);
scanf("%s",f);
rewind(stdin);
for(i=0;e[i]!='\0';i++){
if(e[i]!=f[i])
cnt++;
}
printf("%d",cnt);
return 0;
}