結果

問題 No.932 解法破綻!高橋君
ユーザー stone_725
提出日時 2019-11-30 21:17:12
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
AC  
実行時間 18 ms / 2,000 ms
コード長 461 bytes
コンパイル時間 4,900 ms
コンパイル使用メモリ 169,924 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-11-30 15:41:27
合計ジャッジ時間 5,869 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <boost/algorithm/string/classification.hpp>
#include <boost/algorithm/string/split.hpp>

using namespace std;
using namespace boost::algorithm;

int main(){
    string str;
    cin >> str;
    vector<string> v;
    split(v, str, boost::is_any_of(","));
    for(auto&& i : v){
        if(i != "AC"){
            cout << "Failed...\n";
            return 0;
        }
    }
    cout << "Done!\n";
}
0