結果
| 問題 | No.292 芸名 |
| コンテスト | |
| ユーザー |
cureskol
|
| 提出日時 | 2020-04-01 11:32:33 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 225 bytes |
| 記録 | |
| コンパイル時間 | 1,038 ms |
| コンパイル使用メモリ | 185,304 KB |
| 実行使用メモリ | 7,720 KB |
| 最終ジャッジ日時 | 2026-03-12 23:36:30 |
| 合計ジャッジ時間 | 1,564 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 10 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
signed main(){
string s;cin>>s;
set<int> se;
int a;cin>>a;se.insert(a);cin>>a;se.insert(a);
for(int i=0;i<s.size();i++)if(!se.count(s[i]))cout<<s[i];cout<<endl;
}
cureskol