結果
問題 | No.224 文字列変更(easy) |
ユーザー |
|
提出日時 | 2018-06-25 22:26:42 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 228 bytes |
コンパイル時間 | 561 ms |
コンパイル使用メモリ | 65,708 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-30 22:43:04 |
合計ジャッジ時間 | 1,272 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 1 WA * 21 |
ソースコード
#include <iostream> #include <string> using namespace std; int main(int argc, char* argv[]) { 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; return 0; }