結果
| 問題 |
No.224 文字列変更(easy)
|
| コンテスト | |
| ユーザー |
d_sei
|
| 提出日時 | 2019-08-26 21:13:37 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 318 bytes |
| コンパイル時間 | 597 ms |
| コンパイル使用メモリ | 79,112 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-18 02:41:27 |
| 合計ジャッジ時間 | 1,260 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 22 |
ソースコード
#include<iostream>
#include<algorithm>
#include <vector>
#include<cmath>
#include<iomanip>
using namespace std;
typedef long long int lont;
int main() {
int N;
string S, T;
cin >> N >> S >> T;
int cnt = 0;
for (int ia = 0; ia < N; ia++) {
if (S.at(ia) == T.at(ia)) {
cnt++;
}
}
cout << N - cnt << endl;
}
d_sei