#41389: 90%求救


elan0u0@gmail.com (Elan Gu)

學校 : 不指定學校
編號 : 269198
來源 : [220.141.106.219]
最後登入時間 :
2024-04-25 19:52:02
h033. 雜訊移除 (Noise) -- TOI練習賽202112新手組第1題 | From: [111.249.251.116] | 發表日期 : 2024-07-23 20:40

t,n=map(int,input().split())
l=[]
b=[]  
for i in range(len(str(t))):
    if t%10!=n:
        l.append(t%10)
    t//=10
l.reverse()
b=l[::-1]
if len(l)==1:
    print("Yes")
else:
    if l==b:
        print("Yes")
    else:
        print("No")

第13 14個測資錯,但找不到問題

 
#41409: Re: 90%求救


cges30901 (cges30901)

學校 : 不指定學校
編號 : 30877
來源 : [39.9.74.255]
最後登入時間 :
2024-10-14 22:20:08
h033. 雜訊移除 (Noise) -- TOI練習賽202112新手組第1題 | From: [111.71.216.0] | 發表日期 : 2024-07-24 20:25

t,n=map(int,input().split())
l=[]
b=[]  
for i in range(len(str(t))):
    if t%10!=n:
        l.append(t%10)
    t//=10
l.reverse()
b=l[::-1]
if len(l)==1:
    print("Yes")
else:
    if l==b:
        print("Yes")
    else:
        print("No")

第13 14個測資錯,但找不到問題


t有可能開頭是0

 
#41410: Re: 90%求救


elan0u0@gmail.com (Elan Gu)

學校 : 不指定學校
編號 : 269198
來源 : [220.141.106.219]
最後登入時間 :
2024-04-25 19:52:02
h033. 雜訊移除 (Noise) -- TOI練習賽202112新手組第1題 | From: [111.249.197.229] | 發表日期 : 2024-07-24 21:38

t,n=map(int,input().split())
l=[]
b=[]  
for i in range(len(str(t))):
    if t%10!=n:
        l.append(t%10)
    t//=10
l.reverse()
b=l[::-1]
if len(l)==1:
    print("Yes")
else:
    if l==b:
        print("Yes")
    else:
        print("No")

第13 14個測資錯,但找不到問題


t有可能開頭是0

多謝

 
ZeroJudge Forum