#16584: python AC


r2005.wang@gmail.com (王藝誠)

學校 : 不指定學校
編號 : 67850
來源 : [36.238.215.45]
最後登入時間 :
2022-01-23 22:54:00
a024. 最大公因數(GCD) | From: [114.47.180.174] | 發表日期 : 2019-01-18 17:37

.while True:
.    try:
.        line = input()
.    except EOFError:
.        break
.    a=[int(i) for i in line.split(" ")]
.    while 0 not in a:
.        a[0],a[1]=min(a),max(a)-max(a)//min(a)*min(a)
.    print(max(a))

 
ZeroJudge Forum