#21220: 測試正確,但是送出卻CE(core_dumped),Why?


c0745077 (Haha)

學校 : 不指定學校
編號 : 81434
來源 : [218.173.41.87]
最後登入時間 :
2022-07-16 22:21:52
e997. 升旗典禮抽背課文 -- 板橋高中Python教學題 | From: [180.217.235.7] | 發表日期 : 2020-05-03 11:45

#include <iostream>

#include <bits/stdc++.h>

 

using namespace std;

 

int main()

{

    string str;

    string strcop;

    while(getline(cin,str))

    {

        vector <string> vecstr;

        int num;

        istringstream ss(str);

        while(ss>>strcop)

        {

            vecstr.push_back(strcop);

        }

        cin>>num;

        reverse(vecstr.begin(), vecstr.end());

        cout<<vecstr[num-1]<<endl;

        vector<string>().swap(vecstr);

 

 

 

    }

 

    return 0;

}

 

 
ZeroJudge Forum