結果

問題 No.2811 Calculation Within Sequence
ユーザー highlighterhighlighter
提出日時 2024-07-07 17:06:29
言語 Ruby
(3.3.0)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 38,272 KB
最終ジャッジ日時 2024-07-08 12:14:35
合計ジャッジ時間 11,351 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 257 ms
37,760 KB
testcase_01 AC 268 ms
37,760 KB
testcase_02 AC 245 ms
37,760 KB
testcase_03 AC 263 ms
37,760 KB
testcase_04 AC 271 ms
37,632 KB
testcase_05 AC 256 ms
37,888 KB
testcase_06 AC 256 ms
37,760 KB
testcase_07 AC 256 ms
37,632 KB
testcase_08 AC 265 ms
37,632 KB
testcase_09 AC 250 ms
37,632 KB
testcase_10 AC 250 ms
37,504 KB
testcase_11 AC 247 ms
37,760 KB
testcase_12 AC 272 ms
37,760 KB
testcase_13 AC 266 ms
37,760 KB
testcase_14 AC 255 ms
37,888 KB
testcase_15 AC 270 ms
37,760 KB
testcase_16 AC 267 ms
37,760 KB
testcase_17 AC 278 ms
37,632 KB
testcase_18 AC 237 ms
37,888 KB
testcase_19 AC 233 ms
37,888 KB
testcase_20 AC 238 ms
38,272 KB
testcase_21 AC 189 ms
30,080 KB
testcase_22 AC 109 ms
18,048 KB
testcase_23 AC 119 ms
16,896 KB
testcase_24 AC 199 ms
32,384 KB
testcase_25 AC 93 ms
14,464 KB
testcase_26 AC 157 ms
25,600 KB
testcase_27 AC 175 ms
25,320 KB
testcase_28 AC 177 ms
27,136 KB
testcase_29 AC 95 ms
15,488 KB
testcase_30 AC 203 ms
26,112 KB
testcase_31 AC 172 ms
29,952 KB
testcase_32 AC 131 ms
18,816 KB
testcase_33 AC 177 ms
27,008 KB
testcase_34 AC 131 ms
22,272 KB
testcase_35 AC 146 ms
22,784 KB
testcase_36 AC 139 ms
23,168 KB
testcase_37 AC 166 ms
27,776 KB
testcase_38 AC 171 ms
31,104 KB
testcase_39 AC 124 ms
19,968 KB
testcase_40 AC 143 ms
22,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - a
Main.rb:1: warning: assigned but unused variable - b
Syntax OK

ソースコード

diff #

a,b=gets.chomp.split(" ").map(&:to_i);
T=gets.chomp.split.map(&:to_i)
S=gets.chomp.split.map(&:to_i)
t=0
s=0
T.each do |tt|
	t=t.gcd(tt)
end
S.each do |ss|
	s=s.gcd(ss)
end
if s%t==0
	puts "Yes"
else
	puts "No"
end
0