結果

問題 No.643 Two Operations No.2
ユーザー motimoti
提出日時 2018-05-23 02:08:47
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 474 bytes
コンパイル時間 55 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-06-28 16:03:05
合計ジャッジ時間 833 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
7,168 KB
testcase_01 AC 17 ms
7,296 KB
testcase_02 AC 17 ms
7,296 KB
testcase_03 AC 18 ms
7,168 KB
testcase_04 AC 18 ms
7,168 KB
testcase_05 AC 18 ms
7,168 KB
testcase_06 WA -
testcase_07 AC 16 ms
7,168 KB
testcase_08 WA -
testcase_09 AC 17 ms
7,168 KB
testcase_10 AC 18 ms
7,168 KB
testcase_11 AC 17 ms
7,168 KB
testcase_12 AC 18 ms
7,168 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

#!/usr/bin/env perl

use strict;
use warnings;
use Data::Dumper;

my ($x, $y) = split / /, <>; chomp $y;

if ($x == $y) {
  print 0;
  exit;
}

my @q;
push @q, [$y, $x, 1];
push @q, [$x + $y, $x - $y, 1];
my %vis;
while (scalar @q) {
  my ($x, $y, $c) = @{shift @q};
  if ($x == $y) {
    print $c;
    exit;
  }
  my @mark = [$x, $y];
  if (!exists $vis{@mark}) {
    $vis{@mark} = 1;
    push @q, [$y, $x, $c + 1];
    push @q, [$x + $y, $x - $y, $c + 1];
  }
}

print -1
0