結果
| 問題 |
No.3294 UECoder
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-10-14 21:18:50 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 218 bytes |
| コンパイル時間 | 1,589 ms |
| コンパイル使用メモリ | 195,628 KB |
| 実行使用メモリ | 7,720 KB |
| 最終ジャッジ日時 | 2025-10-14 21:18:54 |
| 合計ジャッジ時間 | 2,861 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 20 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < (n); ++i)
int main(){
string s;
cin >> s;
rep(i,s.size()){
if(s[i] == 'c'){
cout << "UEC" << s.substr(i+1) << endl;
}
}
}