結果

問題 No.3019 YNeos
ユーザー 👑 rin204
提出日時 2025-02-15 00:07:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 1,000 ms
コード長 189 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 53,720 KB
最終ジャッジ日時 2025-02-15 00:07:13
合計ジャッジ時間 3,723 ms
ジャッジサーバーID
(参考情報)
judge2 / judge7
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 41
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
T = input()
if 0 <= len(S) - len(T) <= 1:
    U = ""
    for s, t in zip(S, T):
        U += s + t
    if len(S) != len(T):
        U += S[-1]
    print(U)
else:
    print("?")
0