#4695: 為什麼會RE?


fks_0057 (FKS)

學校 : 不指定學校
編號 : 14364
來源 : [111.255.0.119]
最後登入時間 :
2011-01-08 01:18:59
d517. 文字抄寫 I | From: [111.255.2.73] | 發表日期 : 2010-12-25 17:06

用visual studio跑都沒問題的說...

#include <iostream>
#include <string>
#include<cmath>
using namespace std;

int main() {
    long int a,old=0,o=0,count=0;
 string box[9999];
 while(cin>>a){
  for(int i=0;i<a;i++){
   cin>>box[i];
  }
  for(int i=0;i<a;i++){
   for(int j=0;j<i;j++){
    if(box[i]==box[j]){
     old=1;
     break;
     o=j;
    }
   }if(old==1){
    cout<<"Old! "<<o+1<<endl;
    old=0;
   }else{
    cout<<"New! "<<i+1<<endl;
   }
   
   
 }
    
    
 }return 0;
}

 
#4735: Re:為什麼會RE?


linishan (L)

學校 : 國立交通大學
編號 : 1090
來源 : [104.132.150.102]
最後登入時間 :
2019-05-10 19:57:54
d517. 文字抄寫 I | From: [125.226.10.251] | 發表日期 : 2011-01-10 19:54

並不是本機測過就沒事..

那麼多人被卡掉 一定有原因的

所以絕對不是暴力解能過

 

想想看如何善用陣列索引

 
ZeroJudge Forum