[問題] ACM490

看板Prob_Solve (計算數學 Problem Solving)作者 (趴裏趴呆)時間15年前 (2009/10/02 12:16), 編輯推噓1(107)
留言8則, 2人參與, 最新討論串1/1
我自己試都沒問題,可是不知道為什麼上傳online judge 時會不行 它說wrong anwser! 高手可以幫我解答一下嗎? 謝謝!! #include<iostream> #include<string> using namespace std; int main() { string str[105]; int i=0; int len=0; while(getline(cin,str[i])) { i++; } for(int j=0;j<i;j++) { if(str[j].length()>len) len=str[j].length(); } for(int j=0;j<len;j++) { for(int k=i;k>0;k--) { if ( j>str[k-1].length()) { cout<<' '; } else { cout<<str[k-1][j]; } } cout<<endl; } return 0; } -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 140.112.30.84

10/02 12:26, , 1F
我的runtime 是0.012 不知道是不是input是處理有問題?
10/02 12:26, 1F

10/02 14:41, , 2F
多印了很多空白
10/02 14:41, 2F

10/02 14:42, , 3F
更正, 還有其它問題沒考慮到
10/02 14:42, 3F

10/02 14:42, , 4F
比如說這個測資: (三行)
10/02 14:42, 4F

10/02 14:42, , 5F
ttt
10/02 14:42, 5F

10/02 14:42, , 6F
ss
10/02 14:42, 6F

10/02 14:43, , 7F
rrr
10/02 14:43, 7F

10/03 10:40, , 8F
謝謝,我試試看!!
10/03 10:40, 8F
文章代碼(AID): #1AnNwTs9 (Prob_Solve)
文章代碼(AID): #1AnNwTs9 (Prob_Solve)