#32545: python 的解法


birds.dai@gmail.com (Shao-Ting Dai)

學校 : 不指定學校
編號 : 211179
來源 : [219.71.94.249]
最後登入時間 :
2022-10-20 19:44:27
e189. 3的倍數 - 面試題 -- 트와이스 | From: [219.71.94.249] | 發表日期 : 2022-10-19 18:03

雖用到%但卻不是用來找3的倍數,這樣對限制條件來說是許可的嗎?
 
b=[]
c=[]
while True:
  try:
    b.clear()
    c.clear()
    a=int(input())
    while a>0:
      b.append(a%10)
      a=a//10
    for i in range(0,16):
      c.append(3*i)
    if sum(b) in c:
      print("YES")
    else:
      print("NO")
  except EOFError:
    break
 
ZeroJudge Forum