結果

問題 No.2041 E-mail Address
ユーザー 👑 rin204
提出日時 2022-08-19 21:26:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 221 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 63,360 KB
最終ジャッジ日時 2024-10-08 07:29:46
合計ジャッジ時間 1,549 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

T = input()
flg = False
for s in T:
    if flg:
        if s == ")":
            print("@", end="")
            flg = False
        continue
    elif s == "(":
        flg = True
    else:
        print(s, end="")
print()
0