Submission #180956


Source Code Expand

include Math
tkhs = gets().split
tkhs.map!{|i| i.to_i}
from = [tkhs[0],tkhs[1]]
to   = [tkhs[2],tkhs[3]]
time = tkhs[4]
v    = tkhs[5]

n = gets().to_i

def length_sum(x,y,from,to)
	sqrt((from[0]-x)**2 + (from[1]-y)**2) + sqrt((to[0]-x)**2 + (to[1]-y)**2)
end

n.times do |i|
	point = gets().split
	x=point[0].to_i
	y=point[1].to_i
	if length_sum(x,y,from,to) <= v*time
		puts "YES"
		break
	end
	puts "NO" if i==n-1
end

Submission Info

Submission Time
Task C - 浮気調査
User spinute
Language Ruby (1.9.3)
Score 100
Code Size 443 Byte
Status AC
Exec Time 55 ms
Memory 4124 KB

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 31
Set Name Test Cases
All test_01.txt, test_02.txt, test_03.txt, test_04.txt, test_05.txt, test_06.txt, test_07.txt, test_08.txt, test_09.txt, test_10.txt, test_11.txt, test_12.txt, test_13.txt, test_14.txt, test_15.txt, test_16.txt, test_17.txt, test_18.txt, test_19.txt, test_20.txt, test_21.txt, test_22.txt, test_23.txt, test_24.txt, test_25.txt, test_26.txt, test_27.txt, test_28.txt, test_29.txt, test_30.txt, test_31.txt
Case Name Status Exec Time Memory
sample_01.txt AC 53 ms 4072 KB
sample_02.txt AC 50 ms 4088 KB
sample_03.txt AC 51 ms 4060 KB
sample_04.txt AC 51 ms 4060 KB
test_01.txt AC 54 ms 4072 KB
test_02.txt AC 51 ms 4076 KB
test_03.txt AC 54 ms 4076 KB
test_04.txt AC 52 ms 4076 KB
test_05.txt AC 53 ms 4072 KB
test_06.txt AC 51 ms 4076 KB
test_07.txt AC 54 ms 4072 KB
test_08.txt AC 51 ms 4072 KB
test_09.txt AC 50 ms 4068 KB
test_10.txt AC 51 ms 4072 KB
test_11.txt AC 51 ms 4076 KB
test_12.txt AC 51 ms 4068 KB
test_13.txt AC 54 ms 4072 KB
test_14.txt AC 50 ms 4076 KB
test_15.txt AC 51 ms 4076 KB
test_16.txt AC 49 ms 4052 KB
test_17.txt AC 50 ms 4100 KB
test_18.txt AC 50 ms 4072 KB
test_19.txt AC 54 ms 4064 KB
test_20.txt AC 50 ms 4072 KB
test_21.txt AC 53 ms 3952 KB
test_22.txt AC 51 ms 4076 KB
test_23.txt AC 51 ms 4076 KB
test_24.txt AC 50 ms 4068 KB
test_25.txt AC 55 ms 4076 KB
test_26.txt AC 51 ms 4044 KB
test_27.txt AC 55 ms 4076 KB
test_28.txt AC 50 ms 4076 KB
test_29.txt AC 52 ms 4124 KB
test_30.txt AC 51 ms 4088 KB
test_31.txt AC 51 ms 4120 KB