結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー kura07
提出日時 2015-12-14 23:30:15
言語 Ruby
(3.4.1)
結果
AC  
実行時間 249 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-07-06 22:00:30
合計ジャッジ時間 7,834 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 41
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

p, q = gets.split.map(&:to_i).map(&:abs)

if [p,q]==[0,0]
	type = 0
else
	gcd = p.gcd(q)
	p /= gcd; q /= gcd
	type = (p*q).odd? ? 1 : 2
end

puts gets.to_i.times.count{
	x, y = gets.split.map(&:to_i).map(&:abs)
	
	if type == 0
		next [x,y]==[0,0]
	else
		next false if x % gcd != 0 || y % gcd != 0
		x /= gcd; y /= gcd
		case type
		when 1
			next (x+y).even?
		when 2
			next true
		end
	end
}
0