문제
In a nearby village, the postman, milkman and garbage man face the same problem morning after morning: house 18. House 18 is guarded by two dogs that often cause problems. What they don't know is that the dogs' behaviour is completely predictable. When the day starts, one dog is aggressive for A minutes and is then calm for B minutes. Similarly, the other dog is aggressive for C minutes, then calm for D minutes. Both dogs repeat their behaviours indefinitely, starting a new aggressive period after the calm period, then another calm period etc. Given the arrival times of the postman, milkman and garbage man, determine how many dogs (none, one or both) attack each of them.
입력
The first line of input contains the integers A, B, C and D. The second line contains the integer P, M and G, the minute in the day during which the postman, milkman and garbage man arrive at house 18. For example, if P is 3, it should be interpreted as "the postman arrived sometime during the third minute in the day". All numbers in the input will be between 1 and 999.
출력
Output should consist of three lines; each containing 'both', 'one' or 'none', depending on how many dogs attack each of our heroes.
예제 입력 1
2 2 3 3
1 3 4
예제 출력 1
both
one
none
예제 입력 2
2 3 4 5
4 9 5
예제 출력 2
one
none
none
코드를 제출하려면 로그인이 필요합니다.
로그인