結果
| 問題 |
No.224 文字列変更(easy)
|
| コンテスト | |
| ユーザー |
daradara_sanma
|
| 提出日時 | 2017-07-09 08:49:19 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 298 bytes |
| コンパイル時間 | 374 ms |
| コンパイル使用メモリ | 55,824 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-07-18 02:24:41 |
| 合計ジャッジ時間 | 1,024 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 22 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:9:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
9 | scanf("%d", &n);
| ~~~~~^~~~~~~~~~
main.cpp:10:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
10 | scanf("%s", S);
| ~~~~~^~~~~~~~~
main.cpp:11:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
11 | scanf("%s", T);
| ~~~~~^~~~~~~~~
ソースコード
#include<iostream>
#include<cstdio>
#include<algorithm>
using namespace std;
int main() {
int n;
char S[1001], T[1001];
scanf("%d", &n);
scanf("%s", S);
scanf("%s", T);
int ans = 0;
for (int i = 0; i < n; i++)
{
if (S[i] != T[i])
{
ans++;
}
}
printf("%d\n", ans);
return 0;
}
daradara_sanma