以下是我用python寫的程式碼
import sys
for line in sys.stdin:
line = line.split('\r')[0].split(' ')
a = int(line[0])
b = int(line[1])
print(a//b,end='')
print(' ',end='')
print(a%b)
測試執行可以AC
但是正式執行卻噴了腳本錯誤
錯誤訊息如下
sh: error while loading shared libraries: libc.so.6: failed to map segment from shared object
sh: error while loading shared libraries: libc.so.6: failed to map segment from shared object
這應該是網站的問題吧(?)
還是我的程式寫了甚麼不該出現的東西嗎?