結果

問題 No.1200 お菓子配り-3
ユーザー laneguelanegue
提出日時 2020-08-29 09:52:01
言語 Ruby
(3.4.1)
結果
TLE  
実行時間 -
コード長 297 bytes
コンパイル時間 484 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 31,780 KB
最終ジャッジ日時 2024-11-14 17:21:39
合計ジャッジ時間 143,073 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
24,704 KB
testcase_01 AC 262 ms
19,108 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 WA -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 95 ms
12,416 KB
testcase_32 AC 94 ms
31,780 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

S=gets.to_i
S.times{
	x,y=gets.split.map(&:to_i)
	m=[x,y].min

	a=1
	r=0
	if x==y
		r=x-1
	end
	loop{
		a+=1
		a2=a**2-1
		b=Rational(a*x-y,a2)
		c=Rational(a*y-x,a2)
		if (b<1||c<1) && a*2-1 > m
			break
		end
		next if b<0||c<0
		if b.denominator==1&&c.denominator==1
			r+=1
		end
	}
	puts r
}
0