結果
| 問題 | No.224 文字列変更(easy) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-03-12 20:18:20 |
| 言語 | C90 (gcc 15.2.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 262 bytes |
| 記録 | |
| コンパイル時間 | 141 ms |
| コンパイル使用メモリ | 38,528 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-24 22:49:53 |
| 合計ジャッジ時間 | 1,536 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 WA * 21 |
ソースコード
#include <stdio.h>
int main(){
char e[100000000],f[100000000];
int i,cnt=0,n;
scanf("%d",&n);
rewind(stdin);
scanf("%s",e);
rewind(stdin);
scanf("%s",f);
rewind(stdin);
for(i=0;i<n;i++){
if(e[i]!=f[i])
cnt++;
}
printf("%d",cnt);
return 0;
}