3880: Das blinkenlights

内存限制:128 MB 时间限制:1.000 S
评测方式:文本比较 命题人:
提交:87 解决:48

题目描述


There are two lights that blink at regular intervals. When each one blinks, it turns on and then immediately back off; they don't toggle. They are both off at time t = 0. The first one blinks at t = p, 2p, 3p,seconds; the second one blinks at t = q, 2q, 3q,seconds. Once they start, they both keep blinking forever. It is veryexciting to see them blink at the same time (on the same second). But your patience is going to run out eventually, in ss seconds. Will they blink at same time between t = 1 and t = s (inclusive)? Write a program that can answer this question, quick, before they start blinking again!


Figure B.1: Illustration of the sample inputs. A black circle means the light is off, a white circle means the light blinks at that second. The arrows above point out times when both lights blink.

输入

Input consists of one line containing three space-separated integers p, q and s. The bounds are 1p,q100and1s10000. The first light blinks every p seconds, the second every q seconds. The value of srepresents the maximum number of seconds to consider when determining if the two lights blink at the same time.

输出

Output yes if the two lights blink on the same second between time and time s, or no otherwise.

样例输入 复制

2 5 20

样例输出 复制

yes