結果

問題 No.186 中華風 (Easy)
ユーザー cielciel
提出日時 2015-04-20 00:57:33
言語 Ruby
(3.3.0)
結果
AC  
実行時間 441 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 53 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-07-19 18:24:17
合計ジャッジ時間 6,149 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 223 ms
12,032 KB
testcase_01 AC 149 ms
12,160 KB
testcase_02 AC 147 ms
12,032 KB
testcase_03 AC 81 ms
12,160 KB
testcase_04 AC 261 ms
12,160 KB
testcase_05 AC 244 ms
12,160 KB
testcase_06 AC 309 ms
12,160 KB
testcase_07 AC 275 ms
11,904 KB
testcase_08 AC 362 ms
12,160 KB
testcase_09 AC 360 ms
12,160 KB
testcase_10 AC 293 ms
11,904 KB
testcase_11 AC 441 ms
12,032 KB
testcase_12 AC 182 ms
12,032 KB
testcase_13 AC 179 ms
11,904 KB
testcase_14 AC 206 ms
12,032 KB
testcase_15 AC 88 ms
12,032 KB
testcase_16 AC 189 ms
12,160 KB
testcase_17 AC 153 ms
12,160 KB
testcase_18 AC 110 ms
12,160 KB
testcase_19 AC 280 ms
12,160 KB
testcase_20 AC 134 ms
11,904 KB
testcase_21 AC 251 ms
12,032 KB
testcase_22 AC 288 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:13: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

#!/usr/bin/ruby
a=3.times.map{gets.split.map(&:to_i)}
f=(0..a[1][1]).find{|i|i*a[0][1]+a[0][0]>0 && (i*a[0][1]+a[0][0])%a[1][1]==a[1][0]}
if f
	x=f*a[0][1]+a[0][0]
	y=a[0][1].lcm(a[1][1])
	g=(0..a[2][1]).find{|i|x+y*i>0 && (x+y*i)%a[2][1]==a[2][0]}
	if g
		p x+y*g
		exit
	end
end
p -1
0