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
s862445113
p03760
u628965061
1570073180
Python
Python (3.4.3)
py
Runtime Error
17
2940
163
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))
s893863992
p03760
u788703383
1568221318
Python
Python (3.4.3)
py
Runtime Error
18
2940
83
O = input() E = input() s = '' for i in range(len(O)): s+=O[i] s+=E[i] print(s)
s566793576
p03760
u740767776
1567567196
Python
Python (3.4.3)
py
Runtime Error
18
3060
145
s = input() r = input() for i in range (len(s)+len(t)): if i % 2 == 0: print(s[i//2],end="") else: print(t[i//2],end="")
s616031283
p03760
u151625340
1567266289
Python
PyPy3 (2.4.0)
py
Runtime Error
168
38640
149
O = input() E = input() ans = '' for i in range(len(O)+len(E)): if i%2==0: ans = ans+O[i] else: ans = ans+E[i//2] print(ans)
s472161578
p03760
u819710930
1567261753
Python
Python (3.4.3)
py
Runtime Error
17
2940
94
o=input() e=input() for i in range(len(o)): print(o[i],end='') print(e[i],end='')
s732040335
p03760
u703890795
1567040613
Python
Python (3.4.3)
py
Runtime Error
18
3060
190
O = input() E = input() s = "" if len(O)>len(S): for i in range(len(S)): s = s + O[i] + E[i] print(s + O[len(O)-1]) else: for i in range(len(S)): s = s + O[i] + E[i] print(s)
s538386000
p03760
u131625544
1567019697
Python
Python (3.4.3)
py
Runtime Error
18
3060
165
O = input() E = input() ans = '' for i in range(len(O) -1): ans += O[i] + E(i) if len(O) - len(E) == 0: ans += O[-1] + E[-1] else: ans += O[-1] print(ans)
s609988469
p03760
u314906167
1566808081
Python
Python (3.4.3)
py
Runtime Error
18
3060
94
from itertools import zip_longest print("".join(sum(zip_longest(input(), input()), tuple())))
s073751835
p03760
u951480280
1566759743
Python
Python (3.4.3)
py
Runtime Error
17
2940
79
O = input() E = input() for i in range(len(O)): print(O[i] + E[i], end="")
s829721854
p03760
u951480280
1566759608
Python
Python (3.4.3)
py
Runtime Error
17
2940
79
O = input() E = input() for i in range(len(a)): print(O[i] + E[i], end="")
s264217296
p03760
u403014383
1566424689
Python
Python (3.4.3)
py
Runtime Error
17
2940
82
o=input() e=input() s="" for i in range(len(o)): s = s + o[i] + e[i] print(s)
s351097599
p03760
u625554679
1566254116
Python
Python (3.4.3)
py
Runtime Error
17
2940
127
O = input() E = input() ans = "" for i in range(len(O)): ans += O[i] + E[i] if len(O) > len(E): ans += O[-1] print(ans)
s653904812
p03760
u521866787
1566221797
Python
Python (3.4.3)
py
Runtime Error
18
3064
70
o = input() e = input()+[""] for x,y in zip(o,e): print(x+y,end="")
s601941944
p03760
u243572357
1566074610
Python
Python (3.4.3)
py
Runtime Error
17
2940
185
o, e = [input().rstrip() for i in range(2)] lst = [] for i in len(o): print(o[i], end='') if i + 1 > len(e): print() break else: print(e[i], end='')
s180533688
p03760
u347267726
1566065124
Python
Python (3.4.3)
py
Runtime Error
18
2940
85
a=input() b=input() m="" for i in range(len(a)): m=m+a[i]+b[i] i +=1 print(m)
s644983250
p03760
u477977638
1565849236
Python
Python (3.4.3)
py
Runtime Error
17
2940
76
o=input() e=input() e=e+"" for i in range(len(o)): print(o[i]+e[i],end="")
s701696902
p03760
u627530854
1565843228
Python
Python (3.4.3)
py
Runtime Error
17
2940
172
odds = input() evens = input() password = "".join(a + b for (a, b) in zip(odds, evens) if len(odds) > len(evens): password += odds[-1] print(password)
s940394927
p03760
u325956328
1565836952
Python
Python (3.4.3)
py
Runtime Error
17
2940
94
o = list(input()) e = list(input())=[''] for i in range( len(o) ) : print(o[i]+e[i],end="")
s854594028
p03760
u325956328
1565836831
Python
Python (3.4.3)
py
Runtime Error
17
2940
89
o = list(input()) e = list(input()) for i in range( len(o) ) : print(o[i]+e[i],end="")
s749787357
p03760
u326647750
1565833745
Python
PyPy3 (2.4.0)
py
Runtime Error
177
38384
91
o = list(input()) e = list(input()) for i in range(len(o)): print(o[i] + e[i], end="")
s683516123
p03760
u594512144
1565829758
Python
Python (3.4.3)
py
Runtime Error
17
2940
88
O = input() E = input() pas = [O[i] + E[i] for i in range(len(O))] print(''.join(pas))
s805561226
p03760
u952022797
1565803386
Python
PyPy3 (2.4.0)
py
Runtime Error
179
38512
725
# -*- coding: utf-8 -*- import sys import copy import collections from bisect import bisect_left from bisect import bisect_right from collections import defaultdict from heapq import heappop, heappush, heapify import math import itertools import random # NO, PAY-PAY #import numpy as np #import statistics #from statistics import mean, median,variance,stdev INF = float('inf') def inputInt(): return int(input()) def inputMap(): return map(int, input().split()) def inputList(): return list(map(int, input().split())) def main(): O = input() E = input() ans = "" for i,val in enumerate(O): ans += val ans += E[i] print(ans) if __name__ == "__main__": main()
s781180972
p03760
u999669171
1565667465
Python
Python (3.4.3)
py
Runtime Error
17
2940
77
o = input() e = input() + [""] for x,y in zip( o, e ) : print( x+y, sep="" )
s660431623
p03760
u652892331
1565661338
Python
Python (3.4.3)
py
Runtime Error
17
3064
247
o = input() e = input() o_length = len(o) e_length = len(e) for letter in range(len(o)): print(o[letter], end="") print(e[letter], end="") if len(o) == len(e): print(o[len(o)], end="") print(e[len(e)]) else: print(o[len(o)])
s119792195
p03760
u802963389
1565637012
Python
Python (3.4.3)
py
Runtime Error
18
2940
154
o = input() e = input() ans = [] for i in range(len(o)): ans.append(o[i]) if i < len(o) or len(e) == len(o): ans.append(e[i]) print("".join(ans))
s030390479
p03760
u802963389
1565636991
Python
Python (3.4.3)
py
Runtime Error
17
2940
153
o = input() e = input() ans = [] for i in range(len(o)): ans.append(o[i]) if i < len(o) or len(e) == len(o) ans.append(e[i]) print("".join(ans))
s941375465
p03760
u802963389
1565636791
Python
Python (3.4.3)
py
Runtime Error
18
2940
114
o = input() e = input() ans = [] for i in range(len(o)): ans.append(o[i]) ans.append(e[i]) print("".join(ans))
s683977920
p03760
u867849998
1565563060
Python
Python (3.4.3)
py
Runtime Error
17
2940
72
O=list(input()) E=(input())+[""] for o,e in zip(O,E): print(o+e,end="")
s279863160
p03760
u248670337
1565559548
Python
Python (3.4.3)
py
Runtime Error
17
2940
75
O=list(input()) E=list(input())+[""] for i in zip(O,E): print(x+y,end="")
s294864228
p03760
u204523044
1565378172
Python
Python (3.4.3)
py
Runtime Error
17
2940
130
O = input() E = input() ans = '' for i in range(len(O)+len(E)): if i%2 == 0: ans+=O[i/2] else: ans+=E[i/2] print(ans)
s826168310
p03760
u385309449
1565298851
Python
Python (3.4.3)
py
Runtime Error
18
3064
310
o = input() e = input() if len(o) > len(e): a = o[0]+e[0] for i in range(1,len(e)): a += o[i] + e[i] print(a+o[-1]) if len(o) == len(e): a = o[0]+e[0] for i in range(1,len(e)): a += o[i] + e[i] print(a) else: a = e[0]+o[0] for i in range(1,len(o)): a += e[i] + o[i] print(a+e[-1])
s672720654
p03760
u296150111
1565055215
Python
Python (3.4.3)
py
Runtime Error
17
2940
105
a=input() b=input() s="" for i in range(min(len(b))): s+=a[i]+b[i] if len(a)!=len(b): s+=a[-1] print(s)
s627066873
p03760
u701199820
1564848711
Python
Python (3.4.3)
py
Runtime Error
18
2940
88
o = input() e = input() for x,y in zip_longest(o, e, fillvalue=""): print(x+y,end="")
s617791499
p03760
u302292660
1564451844
Python
PyPy3 (2.4.0)
py
Runtime Error
167
38384
207
o = str(input()) e = str(input()) x = [] if len(o) == len(e): for i in range(len(o)): x.append(o[i]+e[i]) else: for i in range(len(e)): x.append(o[i]+e[i]) x.append(a[-1]) print(*x,sep="")
s399761281
p03760
u302292660
1564451358
Python
PyPy3 (2.4.0)
py
Runtime Error
167
38384
197
o = input() e = input() x = [] if len(o) == len(e): for i in range(len(o)): x.append(o[i]+e[i]) else: for i in range(len(e)): x.append(o[i]+e[i]) x.append(a[-1]) print(*x,sep="")
s419552087
p03760
u302292660
1564451294
Python
PyPy3 (2.4.0)
py
Runtime Error
167
38512
197
o = input() e = input() x = [] if len(o) == len(e): for i in range(len(o)): x.append(o[i]+e[1]) else: for i in range(len(e)): x.append(o[i]+e[i]) x.append(a[-1]) print(*x,sep="")
s734571725
p03760
u302292660
1564451239
Python
PyPy3 (2.4.0)
py
Runtime Error
174
38512
214
o = input() e = input() x = [] if len(o) == len(e): for i in range(len(o)): x.append(o[i]+e[1]) else len(o) != len(e): for i in range(len(e)): x.append(o[i]+e[i]) x.append(a[-1]) print(*x,sep="")
s375389596
p03760
u302292660
1564450653
Python
PyPy3 (2.4.0)
py
Runtime Error
165
38256
213
o = input() e = input() x = [] if len(o) = len(e): for i in range(len(o)): x.append(o[i]+e[1]) else len(o) != len(e): for i in range(len(e)): x.append(o[i]+e[i]) x.append(a[-1]) print(*x,sep="")
s191481063
p03760
u201660334
1564202010
Python
Python (3.4.3)
py
Runtime Error
17
2940
120
o = input() e = input() s = "" for i in range(len(o)): s += o[i] s += e[i] if len(o) > len(e): s += o[-1] print(s)
s117518906
p03760
u759412327
1564094646
Python
Python (3.4.3)
py
Runtime Error
17
2940
124
o = input() e = input() s = "" for i in range(len(o)+len(e)): if i%2==0: s+=a[i//2] else: s+=b[i//2] print(s)
s270820858
p03760
u733774002
1563662929
Python
PyPy3 (2.4.0)
py
Runtime Error
163
38256
90
o = input() e = input() ans = "" for i in range(len(o)): ans += o[i] + e[i] print(ans)
s147050719
p03760
u656572785
1563651045
Python
Python (3.4.3)
py
Runtime Error
17
2940
506
#include <bits/stdc++.h> using namespace std; using ll = long long; using vi = vector<int>; using vll = vector<ll>; using vvi = vector<vector<int>>; using vvl = vector<vector<ll>>; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); string s, t; cin >> s >> t; int n = s.size() + t.size(); string ans(n, 'a'); for (int i = 0; i < s.size(); i++) { ans[i * 2] = s[i]; } for (int i = 0; i < t.size(); i++) { ans[i * 2 + 1] = t[i]; } cout << ans << endl; return 0; }
s907372045
p03760
u227082700
1563643874
Python
Python (3.4.3)
py
Runtime Error
18
2940
69
a="" s,t=input(),input() for i in range(len(s)):a+=s[i]+t[i] print(a)
s594469105
p03760
u373499377
1563457238
Python
Python (3.4.3)
py
Runtime Error
17
3060
461
def main(): o = input() e = input() pw = [0]*(len(o)+len(e)) for i in range(len(o)): pw[i*2] = o[i*2] for i in range(len(e)): pw[i*2 + 1] = e[i*2 + 1] print("".join(pw)) # if len(o) == len(e): # pw = [o[i]+e[i] for i in range(len(o))] # else: # pw = [o[i]+e[i] for i in range(len(e))] # pw.append(o[-1]) # # print("".join(pw)) # if __name__ == "__main__": main()
s899310471
p03760
u513081876
1562178833
Python
Python (3.4.3)
py
Runtime Error
17
3060
232
O, E = map(int, input().split()) ans = '' if len(O) == len(E): for i in range(len(O)): ans += O[i] ans += E[i] else: for i in range(len(E)): ans += O[i] ans += E[i] ans += O[-1] print(ans)
s942425899
p03760
u862296914
1562109935
Python
Python (3.4.3)
py
Runtime Error
17
2940
135
O,E = map(lambda x: [x2 for x2 in x],input().split()) if len(O) - len(E) == 1: E.append("") print("".join([o+e for o,e in zip(O,E)]))
s068707691
p03760
u862296914
1562109840
Python
Python (3.4.3)
py
Runtime Error
17
2940
138
O,E = map(lambda x: [x2 for x2 in x],input().split()) if len(O) - len(E) == 1: E.append("") print("".join([o+e for o,e in zip(O,E)]))
s880671246
p03760
u314050667
1562025567
Python
Python (3.4.3)
py
Runtime Error
18
2940
80
o = input() e = input() p = [o[i]+e[i] for i in range(len(o))] print("".join(p))
s251883560
p03760
u982594421
1560980458
Python
Python (3.4.3)
py
Runtime Error
17
3060
154
o = input().rstrip() e = input().rstrip() if len(e) < len(o): e.append('') ans = '' for l1, l2 in zip(o, e): ans = ''.join([ans, l1, l2]) print(ans)
s618898586
p03760
u389910364
1560644116
Python
Python (3.4.3)
py
Runtime Error
161
13900
862
import bisect import os from collections import Counter, deque from fractions import gcd from functools import lru_cache from functools import reduce import functools import heapq import itertools import math import numpy as np import re import sys import string if os.getenv("LOCAL"): sys.stdin = open("_in.txt", "r") sys.setrecursionlimit(2147483647) INF = float("inf") # # A, B, C = list(map(int, sys.stdin.readline().split())) # a = A # ok = False # for _ in range(1000): # ok |= a % B == C # a += A # if ok: # print('YES') # else: # print('NO') # # # A, B = [int(sys.stdin.readline()) for _ in range(2)] # if A>B: # print('GREATER') # elif A<B: # print('LESS') # else: # print('EQUAL') O, E = [sys.stdin.readline().rstrip() for _ in range(2)] ans = '' for i in range(len(O)): ans += O[i] ans += E[i] print(ans)
s169275395
p03760
u114648678
1560596540
Python
Python (3.4.3)
py
Runtime Error
17
3064
232
o=input() e=input() O=len(o) E=len(e) ans='' if O==E: for i in range(O): ans+=o[i]+e[i] if O+1==E: for i in range(O): ans+=o[i]+e[i] ans+=e[-1] if O-1==E: for i in range(O): ans+=o[i]+e[i] ans+=o[-1] print(ans)
s561815907
p03760
u245870380
1560571799
Python
Python (3.4.3)
py
Runtime Error
17
3060
93
O = input() E = input() for i in range(len(O)): print(O[i],end="") print(E[i],end="")
s142600256
p03760
u063550903
1559141891
Python
Python (3.4.3)
py
Runtime Error
17
3060
200
O = input() E = input() length = len(O)*2 ans = [""]*length for i in range(length): if i%2 == 0: ans[i] = O[i//2] else: ans[i] = E[i//2] ans = "".join(ans) print(ans)
s765311236
p03760
u463655976
1558786962
Python
Python (3.4.3)
py
Runtime Error
17
2940
129
O = input() E = input() tail = len(O) - len(E) print("".join((x + y for x, y in zip([O, O[:-1]][tail], E) + ["", O[-1]][tail])
s955098963
p03760
u463655976
1558786922
Python
Python (3.4.3)
py
Runtime Error
17
2940
128
O = input() E = input() tail = len(E) - len(O) print("".join((x + y for x, y in zip([O, O[:-1]][tail], E) + ["", O[-1]][tail])
s479766333
p03760
u298297089
1558162919
Python
Python (3.4.3)
py
Runtime Error
17
2940
59
print(''.join([o+e for o,e in zip(input(), input()+[''])]))
s931351544
p03760
u739721456
1557627199
Python
Python (3.4.3)
py
Runtime Error
17
3060
179
o=input() e=input() ans="" if len(o)==len(e): for i in range(len(e)): ans+=o[i]+e[i] else: for j in range(len(e)): ans+=o[i]+e[i] ans+=o[-1] print(ans)
s786565916
p03760
u732870425
1556743629
Python
Python (3.4.3)
py
Runtime Error
17
2940
138
O = input() E = input() ans = "" for i in range(len(O)): ans += O[i] ans += E[i] if len(O) > len(E): ans += O[-1] print(ans)
s044688620
p03760
u655048024
1556552115
Python
Python (3.4.3)
py
Runtime Error
17
2940
140
O = str(input()) E = str(input()) n = 0 K = O[0] while True: if(len(K)%2==1): K+=E[n] else: n+=1 K+=O[n] print(K)
s465652793
p03760
u037430802
1555336902
Python
Python (3.4.3)
py
Runtime Error
17
2940
145
o = list(input()) e = list(input()) ans = [] for i in range(len(o)): ans.append(o[i]) if e[i]: ans.append(e[i]) print("".join(ans))
s345710176
p03760
u363558926
1555228326
Python
Python (3.4.3)
py
Runtime Error
17
2940
86
o = list(input()) e = list(input()) for i in range(len(o)): print(o[i]+e[i],end="")
s259151341
p03760
u363558926
1555228298
Python
Python (3.4.3)
py
Runtime Error
17
2940
86
o = list(input()) e = list(input()) for i in range(len(o)): print(o[i],e[i],end="")
s242160664
p03760
u363558926
1555228188
Python
Python (3.4.3)
py
Runtime Error
18
2940
86
o = list(input()) e = list(input()) for i in range(len(o)): print(o[i],e[i],end="")
s979094931
p03760
u363558926
1555228069
Python
Python (3.4.3)
py
Runtime Error
17
2940
86
o = list(input()) e = list(input()) for i in range(len(o)): print(o[i],e[i],end="")
s673748413
p03760
u603745966
1555192275
Python
Python (3.4.3)
py
Runtime Error
23
3572
1132
from functools import reduce import math def main(): # N! を求める # f = math.factorial(N) # 切り捨て # 4 // 3 # 切り上げ #-(-4 // 3) # 初期値用:十分大きい数(100億) # 1e10 # 初期値用:十分小さい数(-100億) # -1e10 # 1文字のみを読み込み # 入力:2 # a = input().rstrip() # 変数:a='2' # スペース区切りで標準入力を配列として読み込み # 入力:2 4 5 7 # a, b, c, d = (int(_) for _ in input().split()) # 変数:a=2 b=4 c=5 d =7 # 1文字ずつ標準入力を配列として読み込み # 入力:2 4 5 7 # a = list(int(_) for _ in input().split()) # 変数:a = [2, 4, 5, 7] # 1文字ずつ標準入力を配列として読み込み # 入力:2457 # a = list(int(_) for _ in input()) # 変数:a = [2, 4, 5, 7] O = list(_ for _ in input()) E = list(_ for _ in input()) ans = [] for i in range(len(O)): ans.append(O[i]) ans.append(E[i]) print(''.join(ans)) if __name__ == '__main__': main()
s560381535
p03760
u878138257
1553832020
Python
Python (3.4.3)
py
Runtime Error
17
2940
126
a = input() b = input() c = "" for i in range(len(a)): c = c + a[i] + b[i] if len(a)>len(b): c = c + a[len(a)] print(c)
s733405614
p03760
u581187895
1553724360
Python
Python (3.4.3)
py
Runtime Error
18
2940
91
s1 = input() s2 = input() password = ''.join([i,j for i, j in zip(s1, s2)]) print(password)
s710246245
p03760
u175034939
1553630165
Python
Python (3.4.3)
py
Runtime Error
17
2940
84
o = input() e = input() a = '' for i in range(len(o)): a += o[i] + e[i] print(a)
s571214941
p03760
u366959492
1553437962
Python
Python (3.4.3)
py
Runtime Error
19
3060
278
o=list(input()) e=list(input()) l=[] if len(o)==len(e): for i in range(len(o)): l.append(o[i]) l.append(e[i]) print("".join(l)) else: for i in range(len(e)): l.append(o[i]) l.append(e[i]) l.append(o[len(o)]) print("".join(l))
s462017176
p03760
u518042385
1553311541
Python
Python (3.4.3)
py
Runtime Error
17
3060
142
lo=list(input()) le=list(input()) l=="" for i in range(len(le)): l+=lo[i] l+=le[i] if len(le)==len(lo): print(l) else: print(l+lo[-1])
s696251141
p03760
u363610900
1553201732
Python
Python (3.4.3)
py
Runtime Error
17
2940
117
O = input() E = input() S = '' for i in range(len(E)): S += O[i] + E[i] print(S if len(O) == len(E) else S+0[-1])
s287655536
p03760
u393512980
1553200483
Python
Python (3.4.3)
py
Runtime Error
17
2940
134
o=input() e=input() j,k=0,0 for i in range(len(o)+len(e)): if i %2: res+=e[k] k+=1 else: res+=o[j] j+=1 print(res)
s897377587
p03760
u115994101
1553049588
Python
Python (2.7.6)
py
Runtime Error
11
2568
90
o,e = map(str, raw_input().split()) s = "" for i in range(len(o)): s += o[i]+e[i] print s
s638959768
p03760
u115994101
1553049409
Python
Python (2.7.6)
py
Runtime Error
11
2568
82
o,e = map(str, raw_input().split()) s = "" for i,j in o,e: s += i s += j print s
s716147534
p03760
u794173881
1551149380
Python
Python (3.4.3)
py
Runtime Error
18
2940
151
o = input() e = input() for i in range(max(len(o),len(e))): if 0<=i<len(o): print(o(i),end="") if 0<=i<len(e): print(e(i), end="") print()
s866578584
p03760
u186838327
1550825272
Python
Python (3.4.3)
py
Runtime Error
17
2940
138
o = str(input()) e = str(input()) s = '' for i in range(len(o)): s += o[i] s += e[i] if len(o) == len(e) +1: s += o[-1] print(s)
s538330088
p03760
u023229441
1550347329
Python
Python (3.4.3)
py
Runtime Error
18
2940
83
a=input() b=input() d="" for i in range(len(a)): d+=(a[i]) d+=(b[i]) print(d)
s369314965
p03760
u023229441
1550347235
Python
Python (3.4.3)
py
Runtime Error
19
2940
93
a=input() b=input() c=a+b d="" for i in len(c)//2: d+=(c[i]) d+=(c[len(c)//2+i]) print(d)
s819273312
p03760
u513793759
1547584239
Python
Python (3.4.3)
py
Runtime Error
19
2940
77
O=input() E=input() T="" for i in range(len(O)): T += O[i]+ E[i] print(T)
s508315550
p03760
u247366051
1546392067
Python
Python (3.4.3)
py
Runtime Error
18
3060
91
a=input();b=input() for i in range(0,len(a)): print(a[i],end='') print(b[i],end='')
s673048558
p03760
u785578220
1546212874
Python
Python (3.4.3)
py
Runtime Error
17
2940
134
a = input() b = input() s = "" for i in range(len(a)+len(b)): if i%2==0:a s+=a[i//2] else: s+=b[i//2] print(s)
s010904906
p03760
u371467115
1546132575
Python
Python (3.4.3)
py
Runtime Error
18
3064
186
o=input() e=input() l=0 if abs(o-e)==0: for i in range(len(e)): l+=o[i]+e[i] print(l) else: for j in range(len(e)): l+=o[i]+e[i] l+=o[len(e)] print(l)
s456148079
p03760
u385167811
1545795678
Python
Python (3.4.3)
py
Runtime Error
18
3060
127
O = str(input().rstrip()) E = str(input().rstrip()) ans = "" for i in range(len(O)): ans += O[i] ans += E[i] print(ans)
s574417844
p03760
u928784113
1545108118
Python
Python (3.4.3)
py
Runtime Error
18
2940
233
# -*- coding: utf-8 -*- O = str(input()) E = str(input()) a = [] if len(O) == len(E): for i in range(len(O)): a.append(O[i]+E[i]) else: for i in range(len(O)): a.append(O[i]+E[i]) a.append(O[-1]) L = "".join(a) print(L)
s625843765
p03760
u928784113
1545108061
Python
Python (3.4.3)
py
Runtime Error
17
3060
233
# -*- coding: utf-8 -*- O = str(input()) E = str(input()) a = [] if len(O) == len(E): for i in range(len(O)): a.append(O[i]+E[i]) else: for i in range(len(O)): a.append(O[i]+E[i]) a.append(O[-1]) L = "".join(a) print(L)
s439418077
p03760
u026155812
1544295183
Python
Python (3.4.3)
py
Runtime Error
18
3064
250
o = input().strip() e = input().strip() a = '' if len(o)-len(e) == 0: for i in range(len(o)): a += o[i] a += e[i] print(a) else: for i in range(len(e)): a += o[i] a += e[i] a += o[len(o)] print(a)
s961741864
p03760
u853900545
1543547014
Python
Python (3.4.3)
py
Runtime Error
18
3060
229
o = input() e = input() a = '' O = len(o) E = len(e) if O == E: for i in range(O): a += o[i] a += e[i] print(a) else: for i in range(O-1): a += o[i] a += e[i] a += o[O] print(a)
s412856626
p03760
u869728296
1543459204
Python
Python (3.4.3)
py
Runtime Error
18
3064
254
O=input() E=input() b=[] if(len(O)>len(E)): X=O else: X=E for i in range(len(X)): b.append(O[i]) b.append(E[i]) a=str(b) a=a.replace("'","") a=a.replace(",","") a=a.replace(" ","") a=a.replace("[","") a=a.replace("]","") print(a)
s221231656
p03760
u985076807
1542758803
Python
Python (3.4.3)
py
Runtime Error
17
2940
289
# https://beta.atcoder.jp/contests/abc058/tasks/abc058_b from itertools import zip_longest def solve(): o = input() e = input() for l, r in zip_longest(o, e): if r is None: r = "" print(f'{l}{r}', end="") if __name__ == '__main__': solve()
s005583403
p03760
u654240084
1542153687
Python
Python (3.4.3)
py
Runtime Error
17
2940
213
#include <bits/stdc++.h> using namespace std; int main() { string O, E; cin >> O >> E; E[E.size() - 1] ==''; for (int i = 0; i < O.length(); i++) { cout << O[i] << E[i] << flush; } cout << endl; }
s532655676
p03760
u432805419
1541977762
Python
Python (3.4.3)
py
Runtime Error
18
3060
214
a = list(input()) b = list(input()) c = [] if len(a) != len(b): flag = True b.append("X") for i in range(len(a)): c += a[i] + b[i] if flag == True: c.pop() print("".join(c)) else: print("".join(c))
s502442832
p03760
u136869985
1541906966
Python
Python (3.4.3)
py
Runtime Error
17
2940
188
O = input() E = input() ans = '' for i in range(min(len(O), len(E)): ans += O[i] ans += E[i] if len(O) > len(E): ans += O[i] elif len(O) < len(E): ans += E[i] print(ans)
s022571051
p03760
u136869985
1541906928
Python
Python (3.4.3)
py
Runtime Error
17
3060
179
O = input() E = input() ans = '' for i in range(min(O, E)): ans += O[i] ans += E[i] if len(O) > len(E): ans += O[i] elif len(O) < len(E): ans += E[i] print(ans)
s782093418
p03760
u601522790
1541707423
Python
Python (3.4.3)
py
Runtime Error
19
2940
107
o = input() e = input() ans = "" for i in len(o): ans += o[i] if len(e) > i: ans += e[i] print(ans)
s803671679
p03760
u601522790
1541707116
Python
Python (3.4.3)
py
Runtime Error
20
2940
102
o = input() e = input() ans = "" for i in o: ans += o[i] if len(e) > i: ans += e[i] print(ans)
s484802778
p03760
u601522790
1541707006
Python
Python (3.4.3)
py
Runtime Error
17
2940
101
o = input() e = input() ans = "" for i in o: ans += o[i] if len(e) > i: ans += e[i] print(ans)
s162932353
p03760
u601522790
1541706901
Python
Python (3.4.3)
py
Runtime Error
19
3060
97
o = input() e = input() ans = "" for i in o: ans += o[i] if ans[i]: ans += e[i] print(ans)
s647870616
p03760
u601522790
1541706869
Python
Python (3.4.3)
py
Runtime Error
17
2940
83
o = input() e = input() ans = "" for i in o: ans += o[i] ans += e[i] print(ans)
s513749676
p03760
u855985627
1541123118
Python
Python (3.4.3)
py
Runtime Error
17
2940
109
o=input() e=input() s="" for i in range(len(o)): if not e[i]: s+=o[i] else: s+=o[i]+e[i] print(s)
s722381717
p03760
u855985627
1541123044
Python
Python (3.4.3)
py
Runtime Error
17
2940
109
o=input() e=input() s="" for i in range(len(o)): if not e[i]: s+=o[i]+e[i] else: s+=o[i] print(s)