結果
問題 |
No.3019 YNeos
|
ユーザー |
|
提出日時 | 2025-04-15 18:15:47 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 39 ms / 1,000 ms |
コード長 | 234 bytes |
コンパイル時間 | 476 ms |
コンパイル使用メモリ | 81,984 KB |
実行使用メモリ | 54,012 KB |
最終ジャッジ日時 | 2025-04-15 18:15:51 |
合計ジャッジ時間 | 3,886 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 41 |
ソースコード
x = input() y = input() l = len(x) - len(y) if l == 0 or l == 1: for i in range(len(x+y)): if i % 2 == 0: print(x[i//2], end="") else: print(y[i//2], end="") print() else: print("?")