s_id stringlengths 10 10 | p_id stringlengths 6 6 | u_id stringlengths 10 10 | date stringlengths 10 10 | language stringclasses 1
value | original_language stringclasses 11
values | filename_ext stringclasses 1
value | status stringclasses 1
value | cpu_time stringlengths 1 5 | memory stringlengths 1 7 | code_size stringlengths 1 6 | code stringlengths 1 539k |
|---|---|---|---|---|---|---|---|---|---|---|---|
s014193187 | p03759 | u768816323 | 1491700832 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3068 | 102 | s=[int(input()) for i in range(3)]
a=0
if i[1]-i[0]==i[2]-i[1]:
print("YES")
else:
print("NO") |
s857957851 | p03759 | u361426244 | 1491700734 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 146 | a = raw_input()
b = raw_input()
print(''.join([x+y for x,y in zip(a,b)]) + (
a[-1] if len(a) > len(b) else b[-1] if len(b) > len(a) else ''
))
|
s995931548 | p03759 | u361426244 | 1491700712 | Python | Python (2.7.6) | py | Runtime Error | 10 | 2568 | 146 | a = raw_input()
b = raw_input()
print(''.join([x+y for x,y in zip(a,b)]) + (
a[-1] if len(a) > len(b) else b[-1] if len(b) > len(a) else ''
))
|
s904610470 | p03759 | u361426244 | 1491700557 | Python | PyPy2 (5.6.0) | py | Runtime Error | 39 | 27884 | 143 | a = raw_input()
b = raw_input()
print ''.join(x+y for x,y in zip(a,b)) + (
a[-1] if len(a) > len(b) else b[-1] if len(b) > len(a) else ''
)
|
s657777951 | p03759 | u216954900 | 1491700527 | Python | Python (3.4.3) | py | Runtime Error | 988 | 12596 | 265 | # -*- coding: utf-8 -*-
import os
import sys
import math
import numpy as np
O = input()
E = input()
ans = ''
for i in range(len(E)):
ans += O[i]
ans += E[i]
if len(O) != len(E):
ans += O[-1]
print(ans) |
s714392396 | p03759 | u361426244 | 1491700357 | Python | Python (2.7.6) | py | Runtime Error | 10 | 2568 | 143 | a = raw_input()
b = raw_input()
print ''.join(x+y for x,y in zip(a,b)) + (
a[-1] if len(a) > len(b) else b[-1] if len(b) > len(a) else ''
)
|
s719190517 | p03759 | u008841386 | 1491700299 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3060 | 128 | l = map(int, raw_input().split())
a-l[0] # A
b=l[1] # B
c=l[2] # C
A=b-a
B=c-b
if A==B:
print('Yes')
else:
print('No') |
s199875716 | p03759 | u361426244 | 1491700204 | Python | Python (2.7.6) | py | Runtime Error | 11 | 2568 | 71 | a = raw_input()
b = raw_input()
print ''.join(x+y for x,y in zip(a,b)) |
s317597732 | p03759 | u177756077 | 1491700021 | Python | Python (2.7.6) | py | Runtime Error | 10 | 2568 | 104 | #!/usr/bin/env python
a,b,c=int(raw_input().split())
if c-b==b-a:
print 'YES'
else:
print 'NO' |
s672424099 | p03759 | u731291894 | 1491699969 | Python | Python (2.7.6) | py | Runtime Error | 11 | 2568 | 90 | # coding: utf-8
(a,b,c) = int(raw_input().split())
print "YES" if b - a == c - b else "NO" |
s170944467 | p03759 | u532087742 | 1491699927 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 130 | import sys
a = int(sys.argv[1])
b = int(sys.argv[2])
c = int(sys.argv[3])
if b-a is c-b:
print("Yes")
else:
print("No")
|
s151399605 | p03759 | u106342872 | 1491699829 | Python | Python (3.4.3) | py | Runtime Error | 19 | 3316 | 152 | #! -*- coding:utf-8 -*-
import math
import sys
a,b,c = map(int,input().split())
x = b - a
y = c - b
if x/y == 1:
print('YES')
else:
print('NO')
|
s028426885 | p03759 | u361426244 | 1491699795 | Python | Python (2.7.6) | py | Runtime Error | 11 | 2568 | 118 | a = int(raw_input())
b = int(raw_input())
c = int(raw_input())
if a - b == b - c:
print 'YES'
else:
print 'NO'
|
s056140356 | p03759 | u657875821 | 1491699790 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 133 | abc = raw_input().split()
a = int(abc[0])
b = int(abc[1])
c = int(abc[2])
if b - a == c - b:
print("YES")
else:
print("NO")
|
s759970630 | p03760 | u546853743 | 1601403103 | Python | Python (3.8.2) | py | Runtime Error | 23 | 9072 | 106 | o=input()
e=input()
a=[]
for i in range(max(len(o),len(e))):
a.append(o[i]+e[i])
b=''.join(a)
print(b) |
s632818011 | p03760 | u910358825 | 1601281817 | Python | Python (3.8.2) | py | Runtime Error | 26 | 8936 | 90 | o=input()
e=input()
for i in range(len(o)):
print(o[i],end="")
print(e[i],end="")
|
s110757092 | p03760 | u244434589 | 1600831718 | Python | Python (3.8.2) | py | Runtime Error | 26 | 9032 | 125 | o = input()
e = input()
ans = ''
for i in range(len(o)):
ans +=o[i]+e[i]
if len(o) != len(e):
ans +=e[-1]
print(ans)
|
s195856219 | p03760 | u411203878 | 1600718177 | Python | PyPy3 (7.3.0) | py | Runtime Error | 100 | 68520 | 149 | a = list(input())
b = list(input())
ans = []
for i in range(len(a)):
ans.append(a[i])
if b[i]:
ans.append(b[i])
print(''.join(ans)) |
s702038818 | p03760 | u411203878 | 1600718035 | Python | PyPy3 (7.3.0) | py | Runtime Error | 319 | 80032 | 132 | a = list(input())
b = list(input())
ans = []
for i in range(len(a)):
ans.append(a[i])
ans.append(b[i])
print(''.join(ans)) |
s899741616 | p03760 | u962718741 | 1600702889 | Python | Python (3.8.2) | py | Runtime Error | 30 | 9100 | 199 | #!/usr/bin/env python3
def main():
a = input()
b = input() + [""]
for i in range(len(a)):
print(a[i], end="")
print(b[i], end="")
if __name__ == "__main__":
main()
|
s107508548 | p03760 | u080364835 | 1600687911 | Python | Python (3.8.2) | py | Runtime Error | 22 | 8980 | 89 | o = input()
e = input()
ans = ''
for i in range(len(o)):
ans += o[i]+e[i]
print(ans) |
s973793757 | p03760 | u446027224 | 1600683939 | Python | Python (3.8.2) | py | Runtime Error | 26 | 8784 | 84 | O = input()
E = input()
for i in range(len(O)):
print(O[i],E[i],sep="",end="")
|
s461228687 | p03760 | u904995051 | 1600043973 | Python | Python (3.8.2) | py | Runtime Error | 28 | 9036 | 86 |
#ABC058B
o = input()
e = input()
for i in range(len(o)):
print(o[i]+e[i],end="") |
s475106175 | p03760 | u630211216 | 1599871048 | Python | Python (3.8.2) | py | Runtime Error | 20 | 8992 | 117 | O=input()
E=inpu()
ans=""
for i in range(len(E)):
ans+=O[i]
ans+=E[i]
if len(O)!=len(E):
ans+=O[-1]
print(ans) |
s650206225 | p03760 | u629540524 | 1599615530 | Python | Python (3.8.2) | py | Runtime Error | 27 | 8936 | 172 | a = input()
b = input()
f = False
x = []
if len(a)> len(b):
b.append(0)
f = True
for i in range(len(a)):
x.append(a[i]+b[i])
if f:
x.pop()
print("".join(x)) |
s787246461 | p03760 | u629540524 | 1599615517 | Python | PyPy3 (7.3.0) | py | Runtime Error | 81 | 74672 | 172 | a = input()
b = input()
f = False
x = []
if len(a)> len(b):
b.append(0)
f = True
for i in range(len(a)):
x.append(a[i]+b[i])
if f:
x.pop()
print("".join(x)) |
s291019823 | p03760 | u629540524 | 1599615461 | Python | PyPy3 (7.3.0) | py | Runtime Error | 83 | 74764 | 172 | a = input()
b = input()
f = False
x = []
if len(a)> len(b):
b.append(0)
f = True
for i in range(len(a)):
x.append(a[i]+b[i])
if f:
x.pop()
print("".join(x)) |
s541420427 | p03760 | u011872685 | 1599358309 | Python | Python (3.8.2) | py | Runtime Error | 21 | 9060 | 185 | #58B
A=input()
B=input()
import ita
pasw=ita.array.make1d(len(A)+len(B)+1)
for i in range(0,len(A)):
pasw[2*i]=A[i]
for j in range(0,len(B)):
pasw[2*j+1]=B[j]
print(pasw)
|
s710015028 | p03760 | u244836567 | 1599344086 | Python | Python (3.8.2) | py | Runtime Error | 23 | 9048 | 193 | a=input()
b=input()
c=len(a)
d=len(b)
x=""
if c<=d:
for i in range(c):
x=x+c[i]
x=x+d[i]
print(x)
if c>d:
for i in range(d):
x=x+c[i]
x=x+d[i]
x=x+c[len(a)-1]
print(x) |
s139635075 | p03760 | u244836567 | 1599253159 | Python | Python (3.8.2) | py | Runtime Error | 22 | 8884 | 113 | a=input()
b=input()
x=""
for i in range(len(a)//2):
x=x+a[2i]
for i in range(len(b)//2):
x=x+b[2i+1]
print(x) |
s691585054 | p03760 | u005977014 | 1598464537 | Python | Python (3.8.2) | py | Runtime Error | 29 | 9032 | 250 | odd = list(map(str, input()))
even = list(map(str, input()))
L=len(odd)*2
li=[]
for i in range(1,L+1):
if i%2==1:
if i==1:
li.append(odd[0])
else:
li.append(odd[i//2])
else:
li.append(even[i//2-1])
print(''.join(li)) |
s631648234 | p03760 | u720558413 | 1598393673 | Python | Python (3.8.2) | py | Runtime Error | 25 | 9096 | 138 | O = input()
E = input()
Ans = []
for i in range(len(O)):
Ans.append(O[i])
Ans.append(E[i])
mojiretu = ''.join(Ans)
print(mojiretu) |
s725306033 | p03760 | u468972478 | 1598308957 | Python | Python (3.8.2) | py | Runtime Error | 24 | 8872 | 175 | # coding: utf-8
odd = raw_input()
even = raw_input()
res = ""
for (o, e) in zip(odd, even):
res = res + o + e
print res if len(odd) - len(even) == 0 else res + odd[-1]
|
s789704244 | p03760 | u451965785 | 1598290159 | Python | Python (3.8.2) | py | Runtime Error | 26 | 9076 | 277 | o = str(input())
s = str(input())
n = ""
if not len(o) == len(s):
for i in range(min(len(o),len(s))):
n += o[i]
n += s[i]
if len(o) > len(s):
n += o[len(o)-1]
if len(s) > len(o):
n += s[len(s)-1]
else:
for i in rage(len(o)):
n += o[i]
n += s[i]
print(n)
|
s327175885 | p03760 | u620846115 | 1597957000 | Python | Python (3.8.2) | py | Runtime Error | 24 | 8944 | 76 | a = list(input())
b = list(input())
for x,y zip(a,b):
print(x+y, end = "") |
s337251595 | p03760 | u620846115 | 1597956833 | Python | Python (3.8.2) | py | Runtime Error | 23 | 8948 | 76 | a = list(input())
b = list(input())+""
print(x+y for x,y in zip(a,b).end="") |
s317451426 | p03760 | u620846115 | 1597956137 | Python | Python (3.8.2) | py | Runtime Error | 24 | 8968 | 88 | a = input()
b = input()
print(''.join([a[i]+b[i] for i in range(o,max(len(a),len(b)))])) |
s078758991 | p03760 | u159335277 | 1597717643 | Python | Python (3.8.2) | py | Runtime Error | 20 | 9092 | 123 | o = input()
e = input()
n = []
e.append(' ')
for i in range(o):
n.append(o[i])
n.append(e[i])
print(''.join(n).strip()) |
s101601407 | p03760 | u823885866 | 1597200754 | Python | Python (3.8.2) | py | Runtime Error | 116 | 27112 | 508 | import sys
import math
import itertools
import collections
import heapq
import re
import numpy as np
from functools import reduce
rr = lambda: sys.stdin.readline().rstrip()
rs = lambda: sys.stdin.readline().split()
ri = lambda: int(sys.stdin.readline())
rm = lambda: map(int, sys.stdin.readline().split())
rl = lambda: list(map(int, sys.stdin.readline().split()))
inf = float('inf')
mod = 10**9 + 7
o = rr()
e = rr()
s = ''
for a, b in itertools.zip_longest(o, e, fillvalu=''):
s += a + b
print(s)
|
s805961356 | p03760 | u519339498 | 1597067617 | Python | Python (3.8.2) | py | Runtime Error | 24 | 9012 | 78 | O=input()
E=input()
ans=""
for i in range(len(O)):
ans+=O[i]+E[i]
print(ans) |
s130271073 | p03760 | u478417863 | 1596935239 | Python | Python (3.8.2) | py | Runtime Error | 24 | 9084 | 133 | s= input().strip()
t= input().strip()
ls=len(s)
lt=len(t)
v=''
for i in range(ls):
v+=s[i]+t[i]
if lt!=ls:
v+=t[-1]
print(v) |
s767066034 | p03760 | u869265610 | 1596809888 | Python | Python (3.8.2) | py | Runtime Error | 26 | 9008 | 139 | N=input()
M=input()
N=list(str(N))
M=list(str(M))
ans=[]
for i in range(len(N)):
ans.append(N[i])
ans.append(M[i])
print("".join(ans))
|
s269896734 | p03760 | u825429469 | 1596729275 | Python | Python (3.8.2) | py | Runtime Error | 25 | 8892 | 85 | o,e = [input() for i in range(2)]
print(*[o[i]+e[i] for i in range(len(o))], sep='') |
s728273219 | p03760 | u875769753 | 1596728680 | Python | Python (3.8.2) | py | Runtime Error | 28 | 8968 | 96 | O = input()
E = input()
N = len(O)
ans = ''
for i in range(N):
ans += O[i] + E[i]
print(ans) |
s961641504 | p03760 | u681409497 | 1596414122 | Python | Python (3.8.2) | py | Runtime Error | 28 | 9080 | 204 | def odd(a,b):
if len(a)%2==1:
return a
if len(b)%2==1:
return b
O = list(input())
E = list(input())
ans = ''
for o, e in zip(O,E):
ans += o+e
ans += odd(O,E)[-1]
print(ans)
|
s145259170 | p03760 | u681409497 | 1596404529 | Python | Python (3.8.2) | py | Runtime Error | 25 | 8892 | 131 | from itertools import zip_longest
O = list(input())
E = list(input())
ans =''
for a,b in zip_longest(O,E):
ans+=a+b
print(ans)
|
s032837045 | p03760 | u642528832 | 1596235359 | Python | Python (3.8.2) | py | Runtime Error | 28 | 8836 | 88 | O,E = input(),input()
ans = ''
for i in range(len(O)):
ans += O[i] + E[i]
print(ans) |
s290599196 | p03760 | u786020649 | 1595518819 | Python | Python (3.8.2) | py | Runtime Error | 24 | 8968 | 120 | from itertools import zip_longest
o=input()
e=input()
print(''.join([x+y for x,y in zip_longetst(o,e,fillvalue='')]))
|
s542903231 | p03760 | u786020649 | 1595518563 | Python | Python (3.8.2) | py | Runtime Error | 25 | 8724 | 192 | from collections import deque
O=input()
E=input()
o=deque(O)
e=deque(E)
s=''
While True:
if not e a and not o:
break
elif o:
s+=o.pop()
elif e:
s+=e.pop()
print(s) |
s848562855 | p03760 | u786020649 | 1595518521 | Python | Python (3.8.2) | py | Runtime Error | 19 | 8884 | 183 | from collections import deque
O=input()
E=input()
o=deque(O)
e=deque(E)
s=''
While True:
if not e a and not o:
break
elif o:
s+=o.pop()
elif e:
s+=e.pop()
|
s296234231 | p03760 | u433380437 | 1595120309 | Python | PyPy3 (7.3.0) | py | Runtime Error | 80 | 68660 | 155 | #その10
O = str(input())
E = str(input())
P = []
for i in range(len(O)):
P.append(O[i])
if i <= len(E):
P.append(E[i])
print(''.join(P)) |
s982496239 | p03760 | u634046173 | 1594710892 | Python | Python (3.8.2) | py | Runtime Error | 25 | 9040 | 110 | O = input()
E = input()
s=''
try:
for i in range(len(O)):
s += O[i]
s+= E[i]
finally:
print(s)
|
s889350516 | p03760 | u814663076 | 1594511100 | Python | Python (3.8.2) | py | Runtime Error | 114 | 27068 | 318 | import sys
def rs(): return sys.stdin.readline().rstrip()
def ri(): return int(rs())
def rs_(): return [_ for _ in rs().split()]
def ri_(): return [int(_) for _ in rs().split()]
import numpy as np
v = np.stack([np.array(list(rs()),dtype=object), np.array(list(rs()),dtype=object)])
v = v.T.flatten()
print(''.join(v)) |
s986214678 | p03760 | u137228327 | 1594020030 | Python | Python (3.8.2) | py | Runtime Error | 29 | 9088 | 118 | O = str(input())
E = str(input())
st = ''
for i in range(len(O)):
st += O[i]
st+= E[i]
print(st)
|
s617877232 | p03760 | u627691992 | 1593783129 | Python | Python (3.8.2) | py | Runtime Error | 22 | 8884 | 44 | atcoderbeginnercontest
atcoderregularcontest |
s265389917 | p03760 | u694720178 | 1593477994 | Python | Python (3.8.2) | py | Runtime Error | 24 | 9120 | 252 | a = input()
b = input()
a_len = len(a)
b_len = len(b)
huku = []
for i in range(a_len):
if a_len != b_len & i==a_len:
break
else:
huku.append(a[i])
huku.append(b[i])
for i in range(len(huku)):
print(huku[i],end="") |
s499188417 | p03760 | u152614052 | 1593379872 | Python | Python (3.8.2) | py | Runtime Error | 28 | 8992 | 115 | o = list(input())
e = list(input())
ans = []
for i in range(len(o)):
ans = ans+ [o[i],e[i]]
print(*ans,sep="") |
s299368922 | p03760 | u152614052 | 1593379849 | Python | Python (3.8.2) | py | Runtime Error | 29 | 9092 | 111 | o = list(input())
e = list(input())
ans = []
for i in range(len(o)):
ans += [o[i],e[i]]
print(*ans,sep="") |
s025913635 | p03760 | u088488125 | 1593378875 | Python | Python (3.8.2) | py | Runtime Error | 28 | 9040 | 123 | o=input()
e=input()
pw=""
for i in range(len(o)+len(e)):
if i%2==0:
pw=pw+e[i//2]
else:
pw=pw+o[i//2]
print(pw) |
s412623464 | p03760 | u898967808 | 1593310108 | Python | Python (3.8.2) | py | Runtime Error | 27 | 8892 | 142 | o = input()
e = input()
n = len(e)
ans = ''
for i in range(n):
ans += o[i]
ans += e[i]
if len(o)%2==1:
ans += o[-1]
print(ans) |
s520057436 | p03760 | u898967808 | 1593310061 | Python | Python (3.8.2) | py | Runtime Error | 28 | 8948 | 145 | o = input()
e = input()
n = len(e)
ans = ''
for i in range(n)
ans += o[i]
ans += e[i]
if len(o)%2==1:
ans += o[-1]
print(ans)
|
s999286833 | p03760 | u971811058 | 1592685770 | Python | Python (3.8.2) | py | Runtime Error | 24 | 8932 | 149 | s=input()
t=input()
k=[]
for i in range(len(t)):
k.append(s[i])
k.append(t[i])
if len(s)>len(t):
t.append(s[len(s)-1])
print("".join(k))
|
s534410261 | p03760 | u441246928 | 1592275350 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 114 | O = input()
E = input()
P = ''
for i in range(min(len(O)+1,len(E)+1)) :
P = P + O[i]
P = P + E[i]
print(P) |
s752374968 | p03760 | u441246928 | 1592275119 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 120 | O = str(input())
E = str(input())
P = ''
for i in range(len(O)+len(E)) :
P = P + O[i]
P = P + E[i]
print(P)
|
s836235737 | p03760 | u441246928 | 1592275080 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 110 | O = input()
E = input()
P = ''
for i in range(len(O)+len(E)) :
P = P + O[i]
P = P + E[i]
print(P)
|
s657617757 | p03760 | u232733545 | 1592171906 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 281 |
from collections import Counter
k = input()
p = input()
d = len(k)
f = len(p)
g=""
diff = abs(d-f)
if d>f :
d = d-diff
g = k[d:len(k)]
else:
f = f-diff
g=p[f:len(p)]
r=""a
i = 0
for i in range(d):
r += "".join(k[i]+p[i])
#print(r)
print(r+g) |
s729840301 | p03760 | u175236987 | 1592152897 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 125 | O = input()
E = input()
K = len(O)
String = ""
for i in range(K):
String += O[i]
String += E[i]
print(String) |
s825389886 | p03760 | u343490140 | 1591771050 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 167 | o = str(input())
e = str(input())
s = []
for i in range(len(e)):
s.append(o[i])
s.append(e[i])
if len(o) - len(e) = 1:
s.append(o[-1])
print(*s, sep = "")
|
s785261375 | p03760 | u343490140 | 1591770837 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3060 | 120 | o = str(input())
e = str(input())
s = []
for i in range(len(o)):
s.append(o[i])
s.append(e[i])
print(*s, sep="") |
s862343028 | p03760 | u243572357 | 1591762298 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 94 | o = list(input())
e = list(input()) + ''
for s, t in zip(o, e):
print(s, t, sep='', end='') |
s592260782 | p03760 | u757274384 | 1591424183 | Python | Python (3.4.3) | py | Runtime Error | 18 | 3060 | 148 | O = input()
E = input()
l = min(len(O), len(E))
s = ""
for i in range(l):
s = s + O[i] + E[i]
if len(O) > len(E):
s = s + O[len(O)]
print(s)
|
s637454376 | p03760 | u757274384 | 1591424157 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3060 | 147 | O = input()
E = input()
l = min(len(O), len(E))
s = ""
for i in range(l):
s = s + O[i] + E[i]
if len(0) > len(E):
s = s + O[len(O)]
print(s) |
s516006921 | p03760 | u805552010 | 1590859000 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 130 | o = list(input())
e = list(input())
ans = []
for i in range(len(o)):
ans.append(o[i])
ans.append(e[i])
print("".join(ans)) |
s463945446 | p03760 | u021548497 | 1590850412 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 127 | s = input()
t = input()
n = len(s)
for i in range(n):
if i%2:
print(t[i], end="")
else:
print(s[i], end="")
print() |
s718364278 | p03760 | u021548497 | 1590850382 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 127 | s = input()
t = input()
n = len(s)
for i in range(n):
if i%2:
print(s[i], end="")
else:
print(t[i], end="")
print() |
s137063354 | p03760 | u763249708 | 1590840951 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 153 | o = input()
e = input()
lo = len(o)
le = len(e)
if lo >= le: l = lo
else: l = le
s = ""
for i in range(l):
s += o[i]
s += e[i]
print(s) |
s277637366 | p03760 | u602972961 | 1590176581 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 75 | O=input()
E=input() + ''
print(''.join([O[i]+E[i] for i in range(len(O))])) |
s150815586 | p03760 | u602972961 | 1590176441 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 99 | def f07():
O=input()
E=input()
print(''.join([O[i]+E[i] for i in range(len(O))]))
f07() |
s506456128 | p03760 | u991134049 | 1589945304 | Python | PyPy3 (2.4.0) | py | Runtime Error | 179 | 38384 | 154 | A = input()
B = input()
for i in range(len(A)+len(B)):
if i % 2 == 0:
C.append(A[int(i/2)])
else:
C.append(B[int(i/2)])
print(*C)
|
s367689804 | p03760 | u370852395 | 1589738121 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 76 | O=input()
E=input()
s=''
for i in range (len(O)):
s+=O[i]+E[i]
print(s)
|
s655576963 | p03760 | u370852395 | 1589738054 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 71 | O=input()
E=input()
for i in range (len(O)):
s+=O[i]+E[i]
print(s)
|
s819861521 | p03760 | u039192119 | 1589509764 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 60 | o=input()
E=input()
for x,y in zip(O,E):
print(x+y,sep="") |
s514529737 | p03760 | u215341636 | 1589394444 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 137 | o = input()
e = input()
if len(e) != len(o):
e += ''
password = ''
for i in range(len(o)):
password += o[i] + e[i]
print(password)
|
s719280694 | p03760 | u227085629 | 1589075643 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3060 | 130 | o = input()
e = input()
ans = ''
n = len(o)
a = 0
while a < n:
ans += o[a]
if a <= len(e):
ans += e[a]
a += 1
print(ans) |
s860710953 | p03760 | u629350026 | 1589073169 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 102 | o=str(input())
e=str(input())
s="A"
for i in range(0,len(o)):
s=s+o[i]+e[i]
s=s.lstrip("A")
print(s) |
s101360294 | p03760 | u229518917 | 1588519348 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 130 | O=input()
E=input()
for i in range(len(O)*2):
if i%2==0:
print(O[i//2],end="")
else:
print(E[i//2],end="") |
s517867539 | p03760 | u460468647 | 1588467319 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3060 | 101 | for o,e in zip(input(),input()):
print(o,e,end="",sep="")
if len(O)>len(E):
print(O[-1],end="") |
s071298637 | p03760 | u225084815 | 1588372415 | Python | PyPy3 (2.4.0) | py | Runtime Error | 160 | 38256 | 171 | o = input()
e = input()
ans_l = [0] * (len(o) + len(e))
for i in range(len(o)):
ans_l[i*2] = o[i]
for j in range(len(e)):
ans_l[j*2+1] = e[i]
print(''.join(ans_l)) |
s651950178 | p03760 | u460468647 | 1588368595 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 126 | o = list(input())
e = list(input())
ans = []
for i in range(len(o)):
ans.append(o[i])
ans.append(e[i])
print("".join(ans)) |
s947498895 | p03760 | u460468647 | 1588368435 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 126 | o = list(input())
e = list(input())
ans = []
for i in range(len(o)):
ans.append(o[i])
ans.append(e[i])
print("".join(ans)) |
s642557097 | p03760 | u489959379 | 1587937165 | Python | PyPy3 (2.4.0) | py | Runtime Error | 161 | 38256 | 289 | import sys
sys.setrecursionlimit(10 ** 7)
f_inf = float('inf')
mod = 10 ** 9 + 7
def resolve():
o = input()
e = input()
res = []
for i in range(len(o)):
res.append(o[i])
res.append(e[i])
print("".join(res))
if __name__ == '__main__':
resolve()
|
s599436402 | p03760 | u487594898 | 1587792224 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 44 | atcoderbeginnercontest
atcoderregularcontest |
s247576285 | p03760 | u252964975 | 1587536808 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3060 | 174 | O=str(input())
E=str(input())
S=""
if len(O)==len(E):
for i in range(len(O)):
S=S+O[i]+E[i]
else:
for i in range(len(O)-1):
S=S+O[i]+E[i]
S=S+O[len(O)]
print(S) |
s966860759 | p03760 | u005469124 | 1587504096 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 395 | #include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef vector<long long> vll;
int main()
{
ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
string A,B;
cin>>A>>B;
for(ll i=0;i<A.size();i++)
{
cout<<A[i];
if(i<B.size())
{
cout<<B[i];
}
}
return 0;
}
|
s698702783 | p03760 | u535659144 | 1587145087 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3060 | 162 | o=list(input())
e=list(input())
p=[]
l=len(o)
for a in range(l):
p.append(o.pop(0))
p.append(e.pop(0))
if len(o):
p.append(o.pop(0))
print("".join(p)) |
s273922864 | p03760 | u652656291 | 1587139269 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 281 | o = list(input())
e = list(input())
e_ni = e.append('a')
l = []
if len(o) == len(e):
for i in range (len(o)):
a = o[i]
b = e[i]
l.append(a)
l.append(b)
else:
for i in range (len(o)):
a = o[i]
b = e[i]
l.append(a)
l.append(b)
del l[-1]
s = ''.join(l)
print(s)
|
s349833902 | p03760 | u652656291 | 1587139028 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 145 | o = list(input())
e = list(input())
l = []
for i in range (len(o)):
a = o[i]
b = e[i]
l.append(a)
l.append(b)
s = ''.join(l)
print(s)
|
s987380384 | p03760 | u652656291 | 1587138705 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 132 | o = input()
e = input()
l = []
for i in range (len(o)):
a = o[i]
b = e[i]
l.append(a)
l.append(b)
s = ''.join(l)
print(s) |
s968164245 | p03760 | u652656291 | 1587138615 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 91 | o = input()
e = input()
l = []
for i in range (len(o)):
l.append(o[i])
l.append(e[i])
|
s148761760 | p03760 | u652656291 | 1587138592 | Python | Python (3.4.3) | py | Runtime Error | 19 | 3060 | 115 | o = input()
e = input()
l = []
for i in range (len(o)):
l.append(o[i])
l.append(e[i])
s = ''.join(l)
print(s) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.