結果
| 問題 |
No.3294 UECoder
|
| コンテスト | |
| ユーザー |
suppy193
|
| 提出日時 | 2025-10-05 18:18:48 |
| 言語 | C90 (gcc 12.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 224 bytes |
| コンパイル時間 | 341 ms |
| コンパイル使用メモリ | 35,680 KB |
| 実行使用メモリ | 7,720 KB |
| 最終ジャッジ日時 | 2025-10-05 18:18:50 |
| 合計ジャッジ時間 | 1,524 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 20 |
ソースコード
#include <stdio.h>
int main()
{
int i;
int n;
char s[100];
scanf("%d", &n);
scanf("%s", s);
printf("UEC");
for(i = 0;i < n;i++){
if(s[i] != 'c')continue;
printf("%c", s[i]);
}
printf("\n");
return 0;
}
suppy193