#2830: 真的很疑惑


YogiBear (test)


dim s as string
open cons for input as #1
do
    input #1, s
    if trim(s) <>"" then
        print s    ' 啥都沒做,只把測資印出就 TLE
    end if
loop until eof(1)
#4623: Re:真的很疑惑


sunny (sunny)


dim s as string
open cons for input as #1
do
    input #1, s
    if trim(s) <>"" then
        print s    ' 啥都沒做,只把測資印出就 TLE
    end if
loop until eof(1)
 
我猜是處理輸入資料的時間太長了吧......不知道這題要怎麼處理輸入資料比較好