#30517: 在第四筆測資被殺掉了 但自己測試都沒問題 想請問這是為什麼?


11035137@ms2.hssh.tp.edu.tw (庭)

學校 : 不指定學校
編號 : 193981
來源 : [203.204.57.109]
最後登入時間 :
2022-07-21 21:41:28
h083. 3. 數位占卜 -- 2022年1月APCS | From: [203.204.57.109] | 發表日期 : 2022-05-27 10:03

#include <iostream>  //數位占卜
#include <cstring>
using namespace std;

int main(){
    int m,i,j,k,time=0;
    cin >> m;
    string sen[m],test,cut1,cut2;
    for(i=0;i<m;i++){
        cin >> sen[i];
    }
    for(i=0;i<m-1;i++){
        for(j=i+1;j<m;j++){
            cut1 = ' ';
            cut2 = ' ';
            test = sen[i]+sen[j];
            for(k=0;k<test.length()/2;k++){
                cut1 += test[k];
            }
            for(k=test.length()/2;k<test.length();k++){
                cut2 += test[k];
            }
            if(cut1==cut2){
                time += 1;
            }
        }
    }
    cout << time;
    return 0;
}

 
#30518: Re: 在第四筆測資被殺掉了 但自己測試都沒問題 想請問這是為什麼?


11035137@ms2.hssh.tp.edu.tw (庭)

學校 : 不指定學校
編號 : 193981
來源 : [203.204.57.109]
最後登入時間 :
2022-07-21 21:41:28
h083. 3. 數位占卜 -- 2022年1月APCS | From: [203.204.57.109] | 發表日期 : 2022-05-27 10:37

#include  //數位占卜
#include
using namespace std;

int main(){
    int m,i,j,k,time=0;
    cin >> m;
    string sen[m],test,cut1,cut2;
    for(i=0;i
        cin >> sen[i];
    }
    for(i=0;i
        for(j=i+1;j
            cut1 = ' ';
            cut2 = ' ';
            test = sen[i]+sen[j];
            for(k=0;k
                cut1 += test[k];
            }
            for(k=test.length()/2;k
                cut2 += test[k];
            }
            if(cut1==cut2){
                time += 1;
            }
        }
    }
    cout << time;
    return 0;
}

啊沒事了沒事了 感謝各位

 
ZeroJudge Forum