結果
| 問題 |
No.3294 UECoder
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-10-05 13:31:25 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 34 ms / 2,000 ms |
| コード長 | 128 bytes |
| コンパイル時間 | 244 ms |
| コンパイル使用メモリ | 82,220 KB |
| 実行使用メモリ | 54,016 KB |
| 最終ジャッジ日時 | 2025-10-05 13:31:27 |
| 合計ジャッジ時間 | 1,790 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
import sys
input = sys.stdin.readline
N = int(input())
S = input().strip()
idx = S.index("c")
ans = "UEC" + S[idx+1:]
print(ans)