結果
問題 |
No.3019 YNeos
|
ユーザー |
|
提出日時 | 2025-03-24 19:27:10 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 33 ms / 1,000 ms |
コード長 | 203 bytes |
コンパイル時間 | 101 ms |
コンパイル使用メモリ | 12,288 KB |
実行使用メモリ | 10,240 KB |
最終ジャッジ日時 | 2025-03-24 19:27:14 |
合計ジャッジ時間 | 3,103 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 41 |
ソースコード
X=input() Y=input() if len(X) - len(Y) not in (0,1): print("?") quit() S = '' for i in range(len(X)+len(Y)): if i % 2 == 0: S += X[i//2] else: S += Y[(i-1)//2] print(S)