結果
| 問題 | No.932 解法破綻!高橋君 |
| コンテスト | |
| ユーザー |
stone_725
|
| 提出日時 | 2019-11-30 21:17:12 |
| 言語 | C++17(clang) (clang++ 22.1.2 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 13 ms / 2,000 ms |
| コード長 | 461 bytes |
| 記録 | |
| コンパイル時間 | 3,310 ms |
| コンパイル使用メモリ | 185,320 KB |
| 実行使用メモリ | 9,620 KB |
| 最終ジャッジ日時 | 2026-05-24 06:47:42 |
| 合計ジャッジ時間 | 4,586 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
ソースコード
#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";
}
stone_725