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
s159010192
p03760
u652656291
1587138512
Python
Python (3.4.3)
py
Runtime Error
17
2940
113
o = input() e = input() l = [] for i in range (len(o)): l.append(o[i]) l.append(e[i]) s = ''.join(l) print(s)
s616667652
p03760
u379142263
1586900262
Python
Python (3.4.3)
py
Runtime Error
150
14536
270
import collections import sys import numpy as np sys.setrecursionlimit(1000000000) from heapq import heapify,heappop,heappush,heappushpop MOD = 10**9+7 import itertools import math o = input() e = input() ans = "" for i in range(len(o)): ans += o[i]+e[i] print(ans)
s180609405
p03760
u379142263
1586900182
Python
Python (3.4.3)
py
Runtime Error
152
12472
325
import collections import sys import numpy as np sys.setrecursionlimit(1000000000) from heapq import heapify,heappop,heappush,heappushpop MOD = 10**9+7 import itertools import math o = input() e = input() ans = "" for i in range(len(o) + len(e)): if i%2 == 0: ans += o[i] else: ans += e[i] print(ans)
s923521031
p03760
u760961723
1586824126
Python
Python (3.4.3)
py
Runtime Error
18
2940
125
O = list(input()) E = list(input()) ans =[] for i in range(len(O)): ans.append(O[i]) ans.append(E[i]) print("".join(ans))
s750164189
p03760
u852790844
1586531061
Python
Python (3.4.3)
py
Runtime Error
17
2940
156
o = deque(input()) e = deque(input()) if len(o) > len(e): e.append('') ans = '' while len(o): ans += o.popleft() ans += e.popleft() print(ans)
s023405028
p03760
u259755734
1586486563
Python
Python (3.4.3)
py
Runtime Error
18
3060
154
O = input() E = input() for i in range(len(O)+len(E)): if i % 2 == 0: print(E[i//2], end="") else: print(O[i//2], end="") print()
s715519105
p03760
u259755734
1586486483
Python
Python (3.4.3)
py
Runtime Error
17
3060
146
O = input() E = input() for i in range(len(O)+len(E)): if i % 2 == 0: print(E[i//2], end="") else: print(O[i//2], end="")
s651875645
p03760
u581603131
1586449290
Python
Python (3.4.3)
py
Runtime Error
17
2940
87
O = input() E = input() a = str() for i in range(len(O)): a += O[i] + E[i] print(a)
s345869892
p03760
u194225526
1586099418
Python
Python (3.4.3)
py
Runtime Error
17
2940
583
import java.util.*; public class Main { public static void main(String args[]) { // 入力 Scanner sc = new Scanner(System.in); String o = sc.next(); String e = sc.next(); sc.close(); // 主処理 char[] co = o.toCharArray(); char[] ce = e.toCharArray(); String result = ""; for (int i = 0; i < co.length; i++) { result += co[i]; if (i < ce.length) { result += ce[i]; } } // 出力 System.out.println(result); } }
s610815397
p03760
u496687522
1585855607
Python
Python (3.4.3)
py
Runtime Error
17
2940
101
O = input() E = input() ans = '' for i in range(len(O)): ans += O[i] ans += E[i] print(ans)
s490789132
p03760
u959682820
1585633561
Python
Python (3.4.3)
py
Runtime Error
17
2940
757
#include <bits/stdc++.h> using namespace std; using ll = long long; using ld = long double; using vi = vector<int>; using vll = vector<ll>; using P = pair<int, int>; const int INF = 1e9; const ll INFLL = 1e18; const int MOD = 1e9 + 7; const int NIL = -1; const ld PI = acosl(-1); #define rep(i,n) for(int i=0; i<(n); ++i) #define all(n) n.begin(),n.end() template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); //cout << fixed << setprecision(6); string o, e; cin >> o >> e; rep(i, max(o.length(), e.length())){ cout << o[i] << e[i]; } cout << endl; return 0; }
s152135936
p03760
u440161695
1585490466
Python
Python (3.4.3)
py
Runtime Error
17
2940
113
O=input() E=input() R=[:len(E)] print(*[e+r for e,r in zip(E,R)],sep="",end="") if len(O)!=len(E): print(O[-1])
s706143382
p03760
u096294926
1584761264
Python
PyPy3 (2.4.0)
py
Runtime Error
170
38256
199
O = list(input()) E = list(input()) ans = list() for i in range(len(O)): ans.append(O[i]) if i > len(E): break else: ans.append(E[i]) result = "".join(ans) print(result)
s117386978
p03760
u096294926
1584761189
Python
PyPy3 (2.4.0)
py
Runtime Error
167
38384
197
O = list(input()) E = list(input()) ans = list() for i in range(len(O)): ans.append(O[i]) if not E[i]: break else: ans.append(E[i]) result = "".join(ans) print(result)
s006479610
p03760
u096294926
1584759636
Python
PyPy3 (2.4.0)
py
Runtime Error
172
38640
151
O = list(input()) E = list(input()) ans = list() for i in range(len(O)): ans.append(O[i]) ans.append(E[i]) result = "".join(ans) print(result)
s562980899
p03760
u941022948
1584732492
Python
Python (3.4.3)
py
Runtime Error
17
3064
301
a=input() b=input() cnt=0 passw='' if (len(a)-len(b))==1: while 1: passw=passw+a[cnt]+b[cnt] cnt=cnt+1 if (cnt+1)>len(b): passw=passw+a[cnt+1] break else: while 1: passw=passw+a[cnt]+b[cnt] cnt=cnt+1 if (cnt+1)>len(b): break print(passw)
s762891831
p03760
u677842374
1584729191
Python
Python (3.4.3)
py
Runtime Error
17
2940
140
O, E = map(str, input().split()) a = '' for i in O: a += i for j in E: a += j E = E.lstrip(j) break print(a)
s858605350
p03760
u291628833
1584724619
Python
PyPy3 (2.4.0)
py
Runtime Error
182
38384
89
s1 = list(input()) s2 = list(input()) ans = "" for i,j in s1,s2: ans += i+j print(ans)
s593485115
p03760
u816631826
1584428356
Python
Python (3.4.3)
py
Runtime Error
18
3064
246
O=list(input()) E=list(input()) F=[] j=0 k=0 for i in range(0,len(O)+len(E)): F.append('0') while j<(len(O)+len(E)): if j%2==0: F[j]=E[j//2] else: F[j] = O[j//2] j=j+1 F= ''.join([str(elem) for elem in F]) print(F)
s083271037
p03760
u863370423
1584424929
Python
Python (3.4.3)
py
Runtime Error
17
2940
371
O=[] E=[] P=[] Olength=int(input("Enter the length of odd Characters") for i in range (o,Olength): x=input("ENTER cHARACTERS") O.append(x) Elength=int(input("Enter the length of even Characters") for i in range (o,Elength): x=input("ENTER cHARACTERS") E.append(x) for i in range (o,Olength): P.append(O[i]) P.append(E[i]) for i in range (o, P.length): print(P[i])
s613917370
p03760
u816631826
1584424012
Python
Python (3.4.3)
py
Runtime Error
17
3064
242
O=list(input()) E=list(input()) F=[] j=0 k=0 F=[0]*(len(O)+len(E)) while j<(len(O)+len(E)): F[j]=E[k] j=j+2 k=k+1 j=1 k=0 while j<(len(O)+len(E)): F[j]=O[k] j=j+2 k=k+1 F= ''.join([str(elem) for elem in F]) print(F)
s435476746
p03760
u018679195
1584423618
Python
Python (3.4.3)
py
Runtime Error
17
3064
270
O=list(input()) E=list(input()) F=[] j=0 k=0 for i in range(0,len(O)+len(E)): F.append('0') while j<(len(O)+len(E)): F[j]=E[k] j=j+2 k=k+1 j=1 k=0 while j<(len(O)+len(E)): F[j]=O[k] j=j+2 k=k+1 F= ''.join([str(elem) for elem in F]) print(F)
s148410164
p03760
u901180556
1584395977
Python
Python (3.4.3)
py
Runtime Error
18
2940
73
o = input.split() e = input.split() print("".join([for i,j in zip(o,e)]))
s124011232
p03760
u693933222
1584331134
Python
Python (3.4.3)
py
Runtime Error
18
2940
132
o = input() e = input() res = "" for i in range(len(e)): result += o[i] + e[i] print(result if len(o) == len(e) else result+o[-1])
s816258805
p03760
u785066634
1583873558
Python
Python (3.4.3)
py
Runtime Error
17
2940
195
o=list(input()) m=list(input()) ans=' ' for i in range(len(o)): ans +=o[i] ans +=m[i] print(ans)
s289322947
p03760
u977661421
1583506021
Python
Python (3.4.3)
py
Runtime Error
17
2940
467
# -*- coding: utf-8 -*- o = list(input()) e = list(input()) len_o = len(o) len_e = len(e) if len_o == len_e: for i in range(len_o - 1): print(o[i], end = '') print(e[i], end = '') print(o[len_o - 1], end = '') print(e[len_e - 1]) else: for i in range(min(len_o, len_e): print(o[i], end = '') print(e[i], end = '') if len_e > len_o: print(e[len(e) - 1]) if len_o > len_e: print(o[len(o) - 1])
s750447426
p03760
u757030836
1583243862
Python
Python (3.4.3)
py
Runtime Error
18
3064
380
o = input() e = input() ans = [] for i in range(len(o)): o.append(o[i]) for j in range(len(e)): e.append(e[j]) if len(o) == len(e): for k in range(len(o)): ans.append(o[k]) ans.append(e[k]) print("".join(ans)) exit() if len(o) != len(e): for l in range(len(e)): ans.append(o[l]) ans.append(e[l]) ans.append(o[-1]) exit()
s772164301
p03760
u428747123
1582422828
Python
Python (3.4.3)
py
Runtime Error
17
2940
115
o=input() e=input() ans = [] for i in range(len(o)): ans.append(o[i]) ans.append(e[i]) print("".join(ans))
s899045619
p03760
u976225138
1582309237
Python
Python (3.4.3)
py
Runtime Error
17
2940
98
o = input() e = input() pw = "" for i in range(len(o)): pw += o[i] + e[i] else: print(pw)
s925836107
p03760
u904995051
1581803839
Python
Python (3.4.3)
py
Runtime Error
17
2940
77
o = list(input()) e = list(input())+[""] for i,j zip(o,e): print(i+j,end="")
s837094663
p03760
u553070631
1581660327
Python
Python (3.4.3)
py
Runtime Error
17
2940
85
s=input() t=input() st='' for i in range(len(s)): st+=s[i] st+=t[i] print(st)
s763016397
p03760
u627803856
1581655882
Python
PyPy3 (2.4.0)
py
Runtime Error
163
38256
235
o = input() e = input() lis = [] for i in range(min(len(o),len(e)): lis.append(o[i]) lis.append(e[i]) if len(o)>len(e): lis.append(o[-1]) elif len(o)==len(e): lis.append(o[-1]) lis.append(e[-1]) print(''.join(lis))
s134318908
p03760
u627803856
1581655230
Python
PyPy3 (2.4.0)
py
Runtime Error
164
38384
114
o = input() e = input() lis = [] for i in range(len(o)): lis.append(o[i]) lis.append(e[i]) print(''.join(lis))
s320539760
p03760
u723583932
1581637113
Python
Python (3.4.3)
py
Runtime Error
17
2940
107
#abc058 b o=input() e=input() ans="" for i in range(len(o)): ans+=o[i] ans+=e[i] print(ans)
s247726101
p03760
u083960235
1580615963
Python
Python (3.4.3)
py
Runtime Error
38
5192
822
import sys, re, os from collections import deque, defaultdict, Counter from math import ceil, sqrt, hypot, factorial, pi, sin, cos, radians from itertools import permutations, combinations, product, accumulate from operator import itemgetter, mul from copy import deepcopy from string import ascii_lowercase, ascii_uppercase, digits from fractions import gcd def input(): return sys.stdin.readline().strip() def INT(): return int(input()) def MAP(): return map(int, input().split()) def S_MAP(): return map(str, input().split()) def LIST(): return list(map(int, input().split())) def S_LIST(): return list(map(str, input().split())) sys.setrecursionlimit(10 ** 9) INF = float('inf') mod = 10 ** 9 + 7 a = input() b = input() l = [] for i in range(len(a)): l.append(a[i]) l.append(b[i]) print("".join(l))
s714985646
p03760
u083960235
1580615938
Python
PyPy3 (2.4.0)
py
Runtime Error
298
60268
822
import sys, re, os from collections import deque, defaultdict, Counter from math import ceil, sqrt, hypot, factorial, pi, sin, cos, radians from itertools import permutations, combinations, product, accumulate from operator import itemgetter, mul from copy import deepcopy from string import ascii_lowercase, ascii_uppercase, digits from fractions import gcd def input(): return sys.stdin.readline().strip() def INT(): return int(input()) def MAP(): return map(int, input().split()) def S_MAP(): return map(str, input().split()) def LIST(): return list(map(int, input().split())) def S_LIST(): return list(map(str, input().split())) sys.setrecursionlimit(10 ** 9) INF = float('inf') mod = 10 ** 9 + 7 a = input() b = input() l = [] for i in range(len(a)): l.append(a[i]) l.append(b[i]) print("".join(l))
s466720142
p03760
u363836311
1580422117
Python
Python (3.4.3)
py
Runtime Error
17
3060
138
A=str(input()) B=str(input()) a=list(A) b=list(B) t='' for i in range(len(a)): t+=a[i]+b[i] if len(a)>len(b): t+=a[len(a)-1] print(t)
s074111154
p03760
u363836311
1580422074
Python
Python (3.4.3)
py
Runtime Error
17
3060
144
A=str(input()) B=str(input()) a=list(A) b=list(B) t='' for i in range(len(a)+len(b)): t+=a[i]+b[i] if len(a)>len(b): t+=a[len(a)-1] print(t)
s846504671
p03760
u665598835
1580082212
Python
Python (3.4.3)
py
Runtime Error
18
3060
238
even = input() odd = input() if (even - odd) % 2 == 0: for i in range(len(even)): print(even[i], odd[i], sep="", end="") else: for i in range(len(even)-1): print(even[i], odd[i], sep="", end="") print(even[-1])
s289496431
p03760
u843722521
1579916304
Python
PyPy3 (2.4.0)
py
Runtime Error
165
38256
118
o,e=input(),input() ans=[] for i in range(len(o)): ans.append(o[i]) if e: ans.append(e[i]) print("".join(ans))
s983435775
p03760
u737298927
1579808950
Python
Python (3.4.3)
py
Runtime Error
17
2940
85
o = input() e = input() s = "" for i in range(len(o)): s += o[i] + e[i] print(s)
s762206381
p03760
u501265339
1579669654
Python
Python (3.4.3)
py
Runtime Error
18
2940
149
O = list(input().split(" ")) E = list(input().split(" ")) ans = [] for i in range(O.len): ans.append(O[i]) ans.append(E[i]) print("".join(ans))
s706887681
p03760
u244416763
1579406198
Python
Python (3.4.3)
py
Runtime Error
17
2940
119
o = str(input()) e = str(input()) ans = [] for i in range(len(o)): ans.append(o[i]) ans.append(e[i]) print(ans)
s890059594
p03760
u244416763
1579406176
Python
Python (3.4.3)
py
Runtime Error
17
2940
128
o = str(input()) e = str(input()) ans = [] for i in range(len(o)): ans.append(o[i]) ans.append(e[i]) print("".join(ans))
s386162035
p03760
u123745130
1579249426
Python
Python (3.4.3)
py
Runtime Error
17
2940
69
a=lst(input()) b=input() i=0 for j in b: a[i:i]=j i+=1 print(*a)
s643982148
p03760
u686036872
1578781004
Python
Python (3.4.3)
py
Runtime Error
17
2940
78
x=list(input()) y=list(input())+'' for a, b in zip(x, y): print(a+b, end='')
s234596034
p03760
u686036872
1578780762
Python
Python (3.4.3)
py
Runtime Error
17
2940
78
o=list(inpput()) e=list(input())+"" for x, y in zip(o,e): print(x+y, end="")
s797668352
p03760
u355661029
1578155515
Python
Python (3.4.3)
py
Runtime Error
17
2940
84
o = input() e = input() n = len(o) for i in range(n): print(o[i] + e[i], end='')
s738036320
p03760
u076764813
1577621692
Python
Python (3.4.3)
py
Runtime Error
17
2940
81
O=input() E=input() for i in range(len(O)): print(O[i], E[i], sep="",end="")
s043315767
p03760
u102242691
1577537792
Python
Python (3.4.3)
py
Runtime Error
18
3060
196
o = list(input()) e = list(input()) ans = [] count = 0 for i in range(len(o)): ans.append(o[i]) ans.append(e[i]) if len(o) != len(e): ans.append(e[-1]) print("".join(ans))
s847919172
p03760
u624689667
1577114357
Python
PyPy3 (2.4.0)
py
Runtime Error
171
38384
267
from itertools import zip_longest odds, evens = [input() for _ in range(2)] if len(odds) > len(evens): evens.append("") chars = [] for odd, even in zip_longest(odd, even, fillvalue=""): chars.append(odd) chars.append(even) ans = "".join(chars) print(ans)
s307907299
p03760
u624689667
1577114110
Python
PyPy3 (2.4.0)
py
Runtime Error
168
38256
152
odds, evens = input().split() chars = [] for odd, even in zip(odds, evens): chars.append(odd) chars.append(even) ans = "".join(chars) print(ans)
s796439606
p03760
u113971909
1576944406
Python
Python (3.4.3)
py
Runtime Error
17
3060
155
o = int(input()) e = int(input()) if len(o)-len(e)==1: x = o[-1] else: x = '' ans = '' for i in range(len(e)): ans += o[i] + e[i] ans += x print(ans)
s374033208
p03760
u063073794
1576902989
Python
Python (3.4.3)
py
Runtime Error
17
2940
71
a=input() b=input() for i in range(len(a)): print(a[i]+b[i],end="")
s742498343
p03760
u243572357
1576886811
Python
Python (3.4.3)
py
Runtime Error
17
3060
119
o = list(input()) e = list(input()) if len(o) > len(e): e.append("") for i in range(o): print(o[i] + e[i], end='')
s552065574
p03760
u243572357
1576886272
Python
Python (3.4.3)
py
Runtime Error
17
2940
115
o = list(input()) e = list(input()) if len(o) > len(e): e.add("") for i in range(o): print(o[i] + e[i], end='')
s320040737
p03760
u831752983
1576527623
Python
Python (3.4.3)
py
Runtime Error
17
2940
58
o=input() e=input() for zip(x,y) in o,e:print(x+y,end="")
s021762757
p03760
u521020719
1576255655
Python
PyPy3 (2.4.0)
py
Runtime Error
163
38256
147
O, E = [input() for _ in range(2)] E += " " length = max(len(O), len(E)) for i in range(length): print(O[i], end='') print(E[i], end='')
s987651422
p03760
u521020719
1576255602
Python
PyPy3 (2.4.0)
py
Runtime Error
170
38256
146
O, E = [input() for _ in range(2)] E += "" length = max(len(O), len(E)) for i in range(length): print(O[i], end='') print(E[i], end='')
s233308765
p03760
u074338678
1575178954
Python
Python (3.4.3)
py
Runtime Error
17
2940
85
o = list(input()) e = list(input()+[""]) for x, y in zip(o, e): print(x+y, end="")
s135395238
p03760
u693953100
1574448787
Python
Python (3.4.3)
py
Runtime Error
17
2940
138
a= input() b = input() for i in range(len(a)*2): if i%2: print(a[i//2],end='') else: print(b[i//2],end='') print()
s618952432
p03760
u693953100
1574448752
Python
Python (3.4.3)
py
Runtime Error
17
2940
136
a= input() b = input() for i in range(len(a)*2): if i%2: print(a[i/2],end='') else: print(b[i/2],end='') print()
s696080544
p03760
u133327090
1574373088
Python
Python (3.4.3)
py
Runtime Error
17
3060
106
o = input() n1 = len(o) e = input() n2 = len(e) for i in range(max(n1,n2)): print(o[i] + e[i], end = "")
s476125853
p03760
u760794812
1574161167
Python
Python (3.4.3)
py
Runtime Error
18
2940
123
O = input() E = input() Answer = '' for i in range(len(O)): Answer = Answer + O[i] Answer = Answer + E[i] print(Answer)
s199334204
p03760
u492447501
1573953110
Python
Python (3.4.3)
py
Runtime Error
17
3060
170
O = input() E = input() j = 0 k = 0 for i in range(len(O)*2): if i % 2 ==0: print(E[j],end="") j = j + 1 else: print(O[k],end="") k = k + 1
s177524735
p03760
u940061594
1573673166
Python
Python (3.4.3)
py
Runtime Error
17
2940
150
#∵∴∵ O = input() E = input() S = "" for i in range(len(E)): S = S + O[i] S = S + E[i] if len(E) < len(O): S = S + S[len(O)] print(S)
s163221302
p03760
u633548583
1573525570
Python
Python (3.4.3)
py
Runtime Error
17
2940
60
o=input() p=input() print(''.join(i+j for i,j in zip (o,p))
s990916182
p03760
u633548583
1573525513
Python
Python (3.4.3)
py
Runtime Error
17
2940
51
o=input() p=input() print(''.join(i+j in zip (o,p))
s532943275
p03760
u117193815
1573411171
Python
Python (3.4.3)
py
Runtime Error
17
3064
205
o=input() e=input() if len(o)!=len(e): for i in range(len(o)): print(o[i],end="") print(e[i],end="") print(o[-1]) else: for i in range(len(o)): print(o[i],end="") print(e[i],end="")
s242292806
p03760
u573754721
1573163119
Python
Python (3.4.3)
py
Runtime Error
18
3064
211
a=list(input()) b=list(input()) L=[0]*(len(a)*2) for i in range(len(a)-1): L[i*2]=a[i] L[i*2+1]=b[i] L[len(a)*2]=a[-1] if len(a)>len(b): del L[len(a)*2+1] else: L[-1]=b[-1] print("".join(L))
s506741953
p03760
u923659712
1573105771
Python
Python (3.4.3)
py
Runtime Error
17
2940
118
a=input() b=input() n=[] for i in range(len(a)): n.append(a[i]) if i<=len(b): n.append(b[i]) print("".join(n))
s561518944
p03760
u923659712
1573105656
Python
Python (3.4.3)
py
Runtime Error
17
2940
100
a=input() b=input() n=[] for i in range(len(a)): n.append(a[i]) n.append(b[i]) print("".join(n))
s263816981
p03760
u254871849
1572499265
Python
Python (3.4.3)
py
Runtime Error
17
2940
211
o = input() e = input() i = 0 res = [] while True: if o[i]: res.append(o[i]) else: break if e[i]: res.append(e[i]) i += 1 else: break print(''.join(res))
s252224259
p03760
u254871849
1572499147
Python
Python (3.4.3)
py
Runtime Error
17
2940
210
o, e = input().split() i = 0 res = [] while True: if o[i]: res.append(o[i]) else: break if e[i]: res.append(e[i]) i += 1 else: break print(''.join(res))
s745614275
p03760
u254871849
1572498969
Python
Python (3.4.3)
py
Runtime Error
17
2940
169
o, e = input().split() i = 0 res = [] while True: res.append(o[i]) if e[i]: res.append(e[i]) i += 1 else: break print(''.join(res))
s911834095
p03760
u819939299
1572374342
Python
Python (3.4.3)
py
Runtime Error
17
2940
75
o=list(input()) e=list(input())+[""] for x,y in zip(x,y):print(x,y,end="")
s353108434
p03760
u819939299
1572374320
Python
Python (3.4.3)
py
Runtime Error
17
2940
70
o=list(input()) e=list(input()) for x,y in zip(x,y):print(x,y,end="")
s424421780
p03760
u895536055
1572357957
Python
Python (3.4.3)
py
Runtime Error
17
3060
160
O = input() E = input() for i in range(E.length()): print(O[i], end='') print(E[i], end='') if not(E.length() == O.length()): print(O[O.length() - 1])
s901902095
p03760
u729535891
1572312711
Python
Python (3.4.3)
py
Runtime Error
17
3060
312
O = input() E = input() dif_len = len(O) - len(E) password = '' if dif_len == 0: for i in range(max_len): password += O[i] + E[i] elif dif_len > 0: for i in range(len(O)): if i != len(O) - 1: password += O[i] + E[i] else: password += O[i] print(password)
s188511309
p03760
u729535891
1571953876
Python
PyPy3 (2.4.0)
py
Runtime Error
173
38256
453
O = input() E = input() dif_len = len(O) - len(E) password = '' if dif_len == 0: for i in range(max_len): password += O[i] + E[i] elif dif_len > 0: for i in range(len(O)): if i != len(O) - 1: password += O[i] + E[i] else: password += O[i] else: for i in range(len(E)): if i != len(E) - 1: password += O[i] + E[i] else: password += E[i] print(password)
s282140756
p03760
u729535891
1571953786
Python
PyPy3 (2.4.0)
py
Runtime Error
180
38512
465
O = input() E = input() dif_len = len(O) - len(E) password = '' if dif_len == 0: for i in range(max_len): password += O[i] + E[i] elif dif_len > 0: for i in range(len(O)): if i != len(O) - 1: password += O[i] + E[i] else: password += O[i] elif dif_len < 0: for i in range(len(E)): if i != len(E) - 1: password += O[i] + E[i] else: password += E[i] print(password)
s250019147
p03760
u729535891
1571953488
Python
PyPy3 (2.4.0)
py
Runtime Error
165
38256
465
O = input() E = input() dif_len = len(O) - len(E) password = '' if dif_len == 0: for i in range(max_len): password += O[i] + E[i] elif dif_len > 0: for i in range(len(O)): if i != len(O) - 1: password += O[i] + E[i] else: password += O[i] elif dif_len < 0: for i in range(len(E)): if i != len(E) - 1: password += O[i] + E[i] else: password += E[i] print(password)
s343177297
p03760
u134712256
1571933400
Python
Python (3.4.3)
py
Runtime Error
17
2940
138
O = input() E = input() str = "" i = 0 while True: str = str + O[i] if len(E)-1<i: exit(1) str = str + E[i] i+=1 print(str)
s887673517
p03760
u134712256
1571933363
Python
Python (3.4.3)
py
Runtime Error
17
2940
136
O = input() E = input() str = "" i = 0 while True: str = str + O[i] if len(E)-1<i: break str = str + E[i] i+=1 print(str)
s686986671
p03760
u644907318
1571868772
Python
PyPy3 (2.4.0)
py
Runtime Error
184
39152
175
O = input().strip() E = input().strip() x = "" for i in range(2*len(E)): if i%2==0: x += O[i] else: x += E[i] if len(O)>len(E): x += O[-1] print(x)
s316816019
p03760
u897436032
1571788241
Python
Python (3.4.3)
py
Runtime Error
17
3064
239
O = input() E = input() answer = "" i = 1 o = 0 e = 0 while i < len(E): if i % 2 != 0: answer.append(O[o]) o += 1 else: answer.append(E[e]) e += 1 i += 1 if len(O) - len(E) == 1: answer.append(O[-1]) return answer
s969560486
p03760
u593590006
1571644658
Python
PyPy3 (2.4.0)
py
Runtime Error
166
38512
89
s1=input() s2=input() n=len(s1) ans='' for i in range(n): ans+=s1[i]+s2[i] print(ans)
s625454683
p03760
u506858457
1571491935
Python
Python (3.4.3)
py
Runtime Error
17
3060
118
o=list(input()) e=list(input())+[""] n=max(len(o),len(e)) for i in range(n): print(o[i],end="") print(e[i],end="")
s571811248
p03760
u506858457
1571491873
Python
Python (3.4.3)
py
Runtime Error
17
3060
102
o=list(input()) e=list(input())+[""] n=max(len(o),len(e)) for i in range(n): print(o[i]+e[i],end="")
s633045195
p03760
u506858457
1571491819
Python
Python (3.4.3)
py
Runtime Error
17
2940
97
o=list(input()) e=list(input()) n=max(len(o),len(e)) for i in range(n): print(o[i]+e[i],end="")
s407625446
p03760
u506858457
1571491721
Python
Python (3.4.3)
py
Runtime Error
17
3060
113
o=list(input()) e=list(input()) n=max(len(o),len(e)) for i in range(n): print(o[i],end="") print(e[i],end="")
s410476026
p03760
u506858457
1571491612
Python
Python (3.4.3)
py
Runtime Error
17
2940
100
o=list(input()) e=list(input()) for i in range(len(o)+1): print(o[i],end="") print(e[i],end="")
s005007454
p03760
u506858457
1571491515
Python
Python (3.4.3)
py
Runtime Error
18
3188
98
o=list(input()) e=list(input()) for i in range(len(o)): print(o[i],end="") print(e[i],end="")
s330975437
p03760
u506858457
1571490131
Python
Python (3.4.3)
py
Runtime Error
17
2940
80
O,E=map(int,input().split()) for i in range(O.size()): print(O[i]+E[i],end='')
s175800107
p03760
u574483499
1571340956
Python
Python (3.4.3)
py
Runtime Error
17
3060
197
O = input() N = input() pw = "" if len(O) == len(N): for i in range(len(O)): pw += O[i] + N[i] else: for i in range(len(O)): pw += O[i] + N[i] pw += O[-1] print(pw)
s557930080
p03760
u574483499
1571340383
Python
Python (3.4.3)
py
Runtime Error
17
2940
186
O = input() N = input() pw = "" if len(O) = len(N): for i in range(len(O)): pw += O[i] + N[i] else: for i in range(len(O)-1): pw += O[i] + N[i] pw += O[-1] print(pw)
s932928715
p03760
u403986473
1570664720
Python
Python (3.4.3)
py
Runtime Error
17
2940
125
O = input() E = input() res = '' for i in range(len(O)): res += O[i] + E[i] if len(O)>len(E): res += O[-1] print(res)
s040086477
p03760
u658288444
1570572917
Python
Python (3.4.3)
py
Runtime Error
19
3060
204
o = input() e = input() list = [] for i in range(len(o)-1): list.append(o[i] + e[i]) if len(e) == len(o): list.append(o[len(o)] + e[len(e)]) else: list.append(o[len(o)]) print(*list, sep='')
s073133852
p03760
u658288444
1570572669
Python
Python (3.4.3)
py
Runtime Error
17
3060
204
o = input() e = input() list = [] for i in range(len(o)-1): list.append(o[i] + e[i]) if len(e) == len(o): list.append(o[len(e)] + e[len(o)]) else: list.append(o[len(e)]) print(*list, sep='')
s377566944
p03760
u628965061
1570073273
Python
Python (3.4.3)
py
Runtime Error
17
2940
167
o=list(input()) e=list(input()) p=list(o + e) for i in range(len(p)): if i % 2 == 1 : p[i-1]=o[int((i-1)/2)] else: p[i-1]=o[int((i/2)-1)] print("".join(pass))