結果

問題 No.2811 Calculation Within Sequence
ユーザー highlighterhighlighter
提出日時 2024-07-07 16:55:10
言語 Perl
(5.38.2)
結果
AC  
実行時間 273 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 42,496 KB
最終ジャッジ日時 2024-07-08 12:14:05
合計ジャッジ時間 9,874 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 246 ms
41,984 KB
testcase_01 AC 241 ms
41,984 KB
testcase_02 AC 252 ms
42,112 KB
testcase_03 AC 248 ms
42,112 KB
testcase_04 AC 237 ms
41,984 KB
testcase_05 AC 241 ms
41,984 KB
testcase_06 AC 241 ms
41,984 KB
testcase_07 AC 256 ms
42,112 KB
testcase_08 AC 237 ms
41,856 KB
testcase_09 AC 263 ms
41,984 KB
testcase_10 AC 261 ms
41,856 KB
testcase_11 AC 262 ms
41,856 KB
testcase_12 AC 238 ms
41,984 KB
testcase_13 AC 252 ms
42,112 KB
testcase_14 AC 257 ms
42,112 KB
testcase_15 AC 231 ms
41,984 KB
testcase_16 AC 243 ms
41,984 KB
testcase_17 AC 237 ms
41,984 KB
testcase_18 AC 273 ms
42,112 KB
testcase_19 AC 265 ms
41,984 KB
testcase_20 AC 266 ms
42,496 KB
testcase_21 AC 134 ms
27,008 KB
testcase_22 AC 51 ms
12,416 KB
testcase_23 AC 59 ms
13,824 KB
testcase_24 AC 151 ms
28,160 KB
testcase_25 AC 24 ms
8,448 KB
testcase_26 AC 107 ms
21,504 KB
testcase_27 AC 115 ms
23,936 KB
testcase_28 AC 119 ms
23,552 KB
testcase_29 AC 33 ms
9,856 KB
testcase_30 AC 104 ms
22,016 KB
testcase_31 AC 142 ms
26,880 KB
testcase_32 AC 70 ms
16,000 KB
testcase_33 AC 113 ms
22,784 KB
testcase_34 AC 85 ms
17,664 KB
testcase_35 AC 95 ms
19,584 KB
testcase_36 AC 93 ms
18,944 KB
testcase_37 AC 129 ms
24,320 KB
testcase_38 AC 156 ms
27,520 KB
testcase_39 AC 70 ms
15,616 KB
testcase_40 AC 97 ms
19,712 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

sub gcd{
	my ($x, $y) = @_;
	while($x>0 && $y>0){
		if ($y > $x) {
			$y %= $x;
		}
		else{
			$x %= $y;
		}
	}
	return $x if $x>0;
	return $y if $y>0;
}

@in=split(/ /,<STDIN>);
my $a=$in[0];
my $b=$in[1];
@T=split(/ /,<STDIN>);
@S=split(/ /,<STDIN>);
my $t=0;
for(0..$a-1){
	$t=gcd($t,$T[$_]);
}
my $s=0;
for(0..$b-1){
	$s=gcd($s,$S[$_]);
}
if($s%$t==0){
	print "Yes";
}
else{
	print "No";
}
0