結果

問題 No.353 ヘイトプラス
ユーザー takashi2001pctakashi2001pc
提出日時 2016-04-02 00:24:06
言語 Perl
(5.38.2)
結果
AC  
実行時間 27 ms / 1,000 ms
コード長 293 bytes
コンパイル時間 728 ms
コンパイル使用メモリ 8,320 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-06-29 13:23:56
合計ジャッジ時間 1,566 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
8,320 KB
testcase_01 AC 25 ms
8,448 KB
testcase_02 AC 26 ms
8,192 KB
testcase_03 AC 26 ms
8,192 KB
testcase_04 AC 26 ms
8,320 KB
testcase_05 AC 26 ms
8,192 KB
testcase_06 AC 26 ms
8,192 KB
testcase_07 AC 27 ms
8,320 KB
testcase_08 AC 26 ms
8,192 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

	use strict;
	use warnings;

	use utf8;
	use Data::Dumper;
	use Encode qw/encode decode decode_utf8 encode_utf8 from_to/;

my $inp = decode('utf8', <STDIN>);
my @array = split(" ", $inp);
my($a ,$b) = @array;
while ($b != 0)
{
    my $c = ($a & $b) << 1;
    $a ^= $b;
    $b = $c;
}
print $a;
0