結果

問題 No.2041 E-mail Address
ユーザー 👑 rin204rin204
提出日時 2022-08-19 21:26:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 221 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 62,848 KB
最終ジャッジ日時 2024-04-17 00:07:14
合計ジャッジ時間 1,362 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 38 ms
51,456 KB
testcase_04 AC 36 ms
51,456 KB
testcase_05 AC 35 ms
51,456 KB
testcase_06 AC 36 ms
51,712 KB
testcase_07 AC 42 ms
60,160 KB
testcase_08 AC 42 ms
58,624 KB
testcase_09 AC 42 ms
59,008 KB
testcase_10 AC 45 ms
59,904 KB
testcase_11 AC 51 ms
62,848 KB
testcase_12 AC 40 ms
57,600 KB
権限があれば一括ダウンロードができます

ソースコード

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