結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー kura07kura07
提出日時 2015-12-14 23:21:32
言語 Ruby
(3.3.0)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 526 bytes
コンパイル時間 49 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-07-06 22:00:14
合計ジャッジ時間 7,557 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
12,160 KB
testcase_01 AC 72 ms
12,416 KB
testcase_02 AC 75 ms
12,288 KB
testcase_03 AC 74 ms
12,288 KB
testcase_04 AC 73 ms
12,160 KB
testcase_05 AC 72 ms
12,288 KB
testcase_06 AC 71 ms
12,416 KB
testcase_07 AC 74 ms
12,160 KB
testcase_08 AC 71 ms
12,160 KB
testcase_09 AC 72 ms
12,160 KB
testcase_10 AC 73 ms
12,160 KB
testcase_11 AC 73 ms
12,416 KB
testcase_12 AC 71 ms
12,160 KB
testcase_13 AC 71 ms
12,160 KB
testcase_14 AC 177 ms
12,544 KB
testcase_15 AC 223 ms
12,288 KB
testcase_16 AC 132 ms
12,544 KB
testcase_17 AC 75 ms
12,288 KB
testcase_18 AC 145 ms
12,416 KB
testcase_19 AC 171 ms
12,288 KB
testcase_20 AC 220 ms
12,416 KB
testcase_21 AC 163 ms
12,288 KB
testcase_22 AC 97 ms
12,416 KB
testcase_23 AC 201 ms
12,416 KB
testcase_24 AC 108 ms
12,416 KB
testcase_25 AC 156 ms
12,544 KB
testcase_26 AC 208 ms
12,416 KB
testcase_27 AC 175 ms
12,544 KB
testcase_28 AC 176 ms
12,416 KB
testcase_29 AC 228 ms
12,288 KB
testcase_30 AC 78 ms
12,416 KB
testcase_31 AC 77 ms
12,288 KB
testcase_32 AC 154 ms
12,288 KB
testcase_33 AC 145 ms
12,416 KB
testcase_34 AC 127 ms
12,288 KB
testcase_35 AC 190 ms
12,416 KB
testcase_36 AC 80 ms
12,288 KB
testcase_37 AC 164 ms
12,416 KB
testcase_38 AC 150 ms
12,288 KB
testcase_39 AC 96 ms
12,288 KB
testcase_40 AC 209 ms
12,416 KB
testcase_41 AC 111 ms
12,288 KB
testcase_42 AC 198 ms
12,416 KB
testcase_43 AC 131 ms
12,288 KB
testcase_44 AC 186 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

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

count = 0
gets.to_i.times{
	x, y = gets.split.map(&:to_i).map(&:abs)
	
	if type==-1
		count += 1 if [x,y]==[0,0]
	else
		next if x % gcd != 0 || y % gcd != 0
		x /= gcd; y /= gcd

		case type
		when 0
			count += 1
		when 1
			count += 1 if (x+y).even?
		when 2
			count += 1 if (x+y).even?
		when 3
			count += 1
		end
	end
}
puts count
0