結果

問題 No.224 文字列変更(easy)
ユーザー togaerrortogaerror
提出日時 2015-06-17 16:12:48
言語 Perl
(5.38.2)
結果
AC  
実行時間 6 ms / 5,000 ms
コード長 255 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 5,212 KB
実行使用メモリ 5,140 KB
最終ジャッジ日時 2023-09-25 02:02:22
合計ジャッジ時間 1,201 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
4,840 KB
testcase_01 AC 5 ms
4,904 KB
testcase_02 AC 5 ms
5,140 KB
testcase_03 AC 5 ms
4,868 KB
testcase_04 AC 5 ms
5,136 KB
testcase_05 AC 5 ms
4,960 KB
testcase_06 AC 4 ms
4,952 KB
testcase_07 AC 5 ms
5,096 KB
testcase_08 AC 5 ms
4,824 KB
testcase_09 AC 5 ms
4,864 KB
testcase_10 AC 5 ms
4,952 KB
testcase_11 AC 5 ms
5,008 KB
testcase_12 AC 5 ms
5,032 KB
testcase_13 AC 4 ms
4,856 KB
testcase_14 AC 4 ms
4,816 KB
testcase_15 AC 5 ms
5,112 KB
testcase_16 AC 5 ms
4,960 KB
testcase_17 AC 6 ms
4,944 KB
testcase_18 AC 5 ms
4,936 KB
testcase_19 AC 5 ms
5,116 KB
testcase_20 AC 5 ms
4,932 KB
testcase_21 AC 5 ms
4,984 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

#!/usr/bin/env perl

use strict;
use warnings;

my $n = <>;
my $s = <>;
my $t = <>;
chomp $s;
chomp $t;
my @S = split //, $s;
my @T= split //, $t;

my $res = 0;
for(my $i = 0; $i < $n; $i++) {
	if($S[$i] ne $T[$i]) {
		$res++;
	}
}

print "$res\n";

exit;
0