We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
from math import gcd
x=int(input(""))
for i in range(x):
a, b, c = map(int, input().split())
if (c <= max(a, b) and c % gcd(a, b) == 0):
print ("YES")
else :
print ("NO")
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Die Hard 3
You are viewing a single comment's thread. Return to all comments →
*My Solution using Python *
from math import gcd x=int(input("")) for i in range(x): a, b, c = map(int, input().split()) if (c <= max(a, b) and c % gcd(a, b) == 0): print ("YES") else : print ("NO")