結果
| 問題 | No.3294 UECoder |
| コンテスト | |
| ユーザー |
Tuchmos
|
| 提出日時 | 2025-10-05 13:48:57 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 102 bytes |
| コンパイル時間 | 123 ms |
| コンパイル使用メモリ | 12,032 KB |
| 実行使用メモリ | 10,496 KB |
| 最終ジャッジ日時 | 2025-10-05 13:48:59 |
| 合計ジャッジ時間 | 1,753 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 20 |
ソースコード
N=int(input())
S=input()
for i in range(N):
if S[i]=='c':
print('UE'+S[i:])
exit()
Tuchmos