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