我試圖解決http://www.spoj.com/problems/AMR12D/,但我一次又一次地得到運行時錯誤NZEC。 這裏是我的代碼:SPOJ Galadriel的鏡像(運行時錯誤)
t=input()
while t:
s=raw_input("")
j=s[::-1]
if j==s:
print "YES"
else:
print "NO"
t=t-1;
你能告訴我身後NZEC錯誤原因是什麼?
我試圖解決http://www.spoj.com/problems/AMR12D/,但我一次又一次地得到運行時錯誤NZEC。 這裏是我的代碼:SPOJ Galadriel的鏡像(運行時錯誤)
t=input()
while t:
s=raw_input("")
j=s[::-1]
if j==s:
print "YES"
else:
print "NO"
t=t-1;
你能告訴我身後NZEC錯誤原因是什麼?
根據什麼在網站上的例子表明:
t=int(raw_input()) # first line of input is the number of cases
while t:
s=raw_input() # read another string
j=s[::-1]
if j==s:
print "YES"
else:
print "NO"
t=t-1;
你的代碼給運行時錯誤http://ideone.com/8fh33r – user3481652
啊所以他們不允許使用'sys'?那麼你可以嘗試做他們的建議。更新了我的答案。我想你已經嘗試過使用另一個例子,它是Python 3的。 – Ashalynd
仍然運行時錯誤 – user3481652
你提交的在您的文章目前格式化?此外,這不會起作用,只是檢查整個字符串的相反。通過問題描述,您需要檢查EVERY子字符串 – Ben
,但迴文字符串的圖像相同,因此每個子字符串也將相同 – user3481652
嗯,您似乎是對的。想不到一個反例:) – Ashalynd