結果

問題 No.224 文字列変更(easy)
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-14 19:53:47
言語 PHP
(8.3.4)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 190 bytes
コンパイル時間 4,565 ms
コンパイル使用メモリ 31,760 KB
実行使用メモリ 31,364 KB
最終ジャッジ日時 2024-07-18 02:24:50
合計ジャッジ時間 3,055 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
31,120 KB
testcase_01 AC 33 ms
31,232 KB
testcase_02 AC 33 ms
31,228 KB
testcase_03 AC 33 ms
30,700 KB
testcase_04 AC 34 ms
31,100 KB
testcase_05 AC 36 ms
31,364 KB
testcase_06 AC 34 ms
31,068 KB
testcase_07 AC 35 ms
31,244 KB
testcase_08 AC 36 ms
31,060 KB
testcase_09 AC 35 ms
30,772 KB
testcase_10 AC 33 ms
31,200 KB
testcase_11 AC 33 ms
31,044 KB
testcase_12 AC 34 ms
31,072 KB
testcase_13 AC 38 ms
31,248 KB
testcase_14 AC 34 ms
31,288 KB
testcase_15 AC 38 ms
31,260 KB
testcase_16 AC 39 ms
31,076 KB
testcase_17 AC 38 ms
30,936 KB
testcase_18 AC 35 ms
31,112 KB
testcase_19 AC 36 ms
31,284 KB
testcase_20 AC 35 ms
31,052 KB
testcase_21 AC 32 ms
31,036 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
$S = trim(fgets(STDIN));
$T = trim(fgets(STDIN));
$ans = 0;
for($i = 0; $i < $n; $i++) {
  if(substr($S, $i, 1) != substr($T, $i, 1)) $ans++;
}
print($ans);
?>
0