結果

問題 No.224 文字列変更(easy)
ユーザー nisshimo
提出日時 2019-01-19 19:31:31
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 258 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 55,124 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-18 02:37:53
合計ジャッジ時間 1,116 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 22
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:8:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |   scanf("%d", &n);
      |   ~~~~~^~~~~~~~~~
main.cpp:9:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |   scanf("%s", s);
      |   ~~~~~^~~~~~~~~
main.cpp:10:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |   scanf("%s", t);
      |   ~~~~~^~~~~~~~~

ソースコード

diff #

#include <iostream>

int main(void)
{
  int n, count=0;
  char s[1000];
  char t[1000];
  scanf("%d", &n);
  scanf("%s", s);
  scanf("%s", t);
  for (int i = 0; i < n; i++)
  {
    if (s[i]!=t[i])
    {
      count += 1;
    }
  }
  printf("%d\n", count);
}
0