結果
| 問題 |
No.224 文字列変更(easy)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-12-17 02:27:13 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 270 bytes |
| コンパイル時間 | 735 ms |
| コンパイル使用メモリ | 79,144 KB |
| 最終ジャッジ日時 | 2025-01-08 11:50:53 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 WA * 21 |
ソースコード
#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
using namespace std;
typedef long long int ll;
int main(){
int ans=0;
string s,t; cin >> s >> t;
for(int i=0;i<s.size();i++){
if(s[i]!=t[i])ans++;
}
cout << ans << endl;
}