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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s592007507 | p03759 | u595375942 | 1577659233 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 64 | a,b,c=map(int,input().split())
print('YES' if b-a==c-b else 'NO) |
s685222779 | p03759 | u897328029 | 1577276638 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 73 | a, b, c = list(input().split())
print('YES' if b - a == c - b else 'NO')
|
s826071741 | p03759 | u305366205 | 1576861907 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 96 | a, b, c = map(int, input().split())
if (b - a) = (c - b):
print('YES')
else:
print('NO') |
s054155408 | p03759 | u972892985 | 1576638673 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 86 | a, b, c = map(int,input().split())
if c - b = b - a:
print("Yes")
else:
print("No")
|
s400166639 | p03759 | u972892985 | 1576638631 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 85 | a, b, c = map(int,input().split())
if c - b = a - b:
print("Yes")
else:
print("No") |
s131682169 | p03759 | u609814378 | 1576194739 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3064 | 555 | O = input()
O_2 = list(O)
OLEN = len(O)
E = input()
E_2 = list(E)
ELEN = len(E)
ans = []
if ELEN >= OLEN:
N = ELEN
else:
N = OLEN
if OLEN == ELEN:
for i in range(N):
ans.append(O_2[i])
ans.append(E_2[i])
elif OLEN != ELEN:
for i in range(N):
if len(ans) == ((OLEN) + (ELEN) -1):
if OLEN > ELEN:
ans.append(O_2[-1])
else:
ans.append(E_2[-1])
break
ans.append(O_2[i])
ans.append(E_2[i])
for i in ans:
print(i,end="") |
s043134373 | p03759 | u609814378 | 1576194469 | Python | Python (3.4.3) | py | Runtime Error | 18 | 3064 | 534 | O = input()
O_2 = list(O)
OLEN = len(O)
E = input()
E_2 = list(E)
ELEN = len(E)
ans = []
if ELEN >= OLEN:
N = ELEN
else:
N = OLEN
if OLEN == ELEN:
for i in range(N):
ans.append(O_2[i])
ans.append(E_2[i])
elif OLEN != ELEN:
for i in range(N):
if len(ans) == ((OLEN) + (ELEN) -1):
if OLEN > ELEN:
ans.append(O_2[-1])
else:
ans.append(E_2[-1])
break
ans.append(O_2[i])
ans.append(E_2[i])
print(ans) |
s409941773 | p03759 | u663767599 | 1575738597 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 70 | a, b, c = input().split(" ")
print("YES" if b - a == c -b else "NO")
|
s624745297 | p03759 | u478625683 | 1575481694 | Python | Python (2.7.6) | py | Runtime Error | 11 | 2568 | 82 | A,B,C=map(int,raw_input().split)
if B-A==C-B:
print "YES"
else:
print "NO" |
s659523790 | p03759 | u629560745 | 1574455610 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 96 | a, b, c = map(int, input().split())
if b - a == c - b:
print('YES')
else:
print('NO') |
s648005387 | p03759 | u263933075 | 1573701822 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 139 | #include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b,c;cin>>a>>b>>c;
if(b-a==c-b)cout<<"YES";
else cout<<"NO";
return 0;
} |
s063097130 | p03759 | u644907318 | 1571868293 | Python | PyPy3 (2.4.0) | py | Runtime Error | 183 | 38256 | 120 | a,b,c = map(int,input().split())
if (b-a)==(c-b):
print("YES")
else:
print("NO")a,b,c = map(int,input().split()) |
s785769357 | p03759 | u644907318 | 1571868110 | Python | PyPy3 (2.4.0) | py | Runtime Error | 175 | 38512 | 183 | N,T = map(int,input().split())
A = list(map(int,input().split()))
tot = 0
for i in range(1,N):
d = A[i]-A[i-1]
if d>T:
tot += T
else:
tot += d
print(tot+T) |
s928577893 | p03759 | u196404530 | 1571536390 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 93 | o=list(input())
e=list(input())+[""]
result="".join([x+y for x,y in zip(o,e)])
print(result)
|
s521224317 | p03759 | u658288444 | 1570572895 | 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(o)] + e[len(e)])
else:
list.append(o[len(o)])
print(*list, sep='') |
s502280360 | p03759 | u658288444 | 1570572781 | 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(o)] + e[len(e)])
else:
list.append(o[len(o)])
print(*list, sep='') |
s606814244 | p03759 | u368104473 | 1570060893 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 97 | a, b, c = map(int, input().split())
if b − a == c − b:
print("YES")
else:
print("NO") |
s849688610 | p03759 | u368104473 | 1570060846 | Python | Python (3.4.3) | py | Runtime Error | 18 | 3192 | 93 | a, b, c = map(int, input().split())
if b−a == c−b:
print("YES")
else:
print("NO") |
s379347038 | p03759 | u760767494 | 1569717011 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 83 | a,b,c=map(int, input().count())
if b-a==c-b:
print('YES')
else:
print('NO') |
s315450497 | p03759 | u945181840 | 1569716006 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 84 | a, b, c = input().split()
if b - a == c - b:
print('YES')
else:
print('NO') |
s909684682 | p03759 | u747602774 | 1569687345 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 92 | a,b,c = map(int,input().split())
if b − a == c − b:
print('YES')
else:
print('NO') |
s836686336 | p03759 | u747602774 | 1569687261 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 92 | a,b,c = map(int,input().split())
if b − a == c − b:
print('YES')
else:
print('NO') |
s575802446 | p03759 | u586212264 | 1568617159 | Python | PyPy3 (2.4.0) | py | Runtime Error | 167 | 38256 | 118 | x=list(input().split())
x1=int(x[0])
y1=int(x[1])
x2=int(x[2])
if (x2-x1)==(x3-x2):
print('YES')
else:
print('NO') |
s517271342 | p03759 | u586212264 | 1568617086 | Python | PyPy3 (2.4.0) | py | Runtime Error | 170 | 38256 | 114 | x=list(input().split())
x1=int(x[0])
y1=int(x[1])
x2=int(x[2])
if x2-x1==x3-x2:
print('YES')
else:
print('NO') |
s193629786 | p03759 | u788703383 | 1568221228 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 83 | O = input()
E = input()
s = ''
for i in range(len(O)):
s+=O[i]
s+=E[i]
print(s) |
s921796024 | p03759 | u263830634 | 1566870365 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3192 | 956 | MOD = 10 ** 9 + 7
n, m = map(int, input().split())
x = list(map(int, input().split()))
y = list(map(int, input().split()))
# 前計算
for i in range(n - 1):
x[i] = x[i + 1] - x[i]
for i in range(m - 1):
y[i] = y[i + 1] - y[i]
N = [n - 1]
for i in range(n - 3, 0, -2):
N.append(N[-1] + i)
# N.append((N[i] + (n - 1 - 2 * (i + 1))) % MOD)
M = [m - 1]
for i in range(m - 3, 0, -2):
M.append(M[-1] + i)
# M.append((M[i] + (m - 1- 2 * (i + 1))) % MOD)
if N[0] % 2 == 0:
N += N[::-1]
elif N[0] != 1:
N += N[1::-1]
if M[0] % 2 == 0:
M += M[::-1]
elif M[0] != 1:
M += M[1::-1]
# print (x)
# print (y)
# print (N)
# print (M)
if len(x) - 1 > len(N):
while True:
pass
if len(y) - 1 > len(M):
while True:
pass
X_sum = 0
for i in range(n - 1):
X_sum += x[i] * N[i]
X_sum %= MOD
Y_sum = 0
for i in range(m - 1):
Y_sum += y[i] * M[i]
Y_sum %= MOD
print ((X_sum * Y_sum) % MOD) |
s959066391 | p03759 | u802963389 | 1566534277 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 94 | a,b,c = map(int, input().split())
if b − a == c − b:
print("YES")
else:
print("NO")
|
s877992740 | p03759 | u802963389 | 1566491888 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 95 | a,b,c = map(int, input().split())
if b − a == c − b:
print("YES"):
else:
print("NO")
|
s412169818 | p03759 | u643714578 | 1566491683 | Python | PyPy3 (2.4.0) | py | Runtime Error | 181 | 38256 | 65 | a,b,c=map(int, input().split())
print("YES" if b-a=c-b else "NO") |
s076067699 | p03759 | u438662618 | 1566094938 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 78 | a, b, c = map(int, input().split())
print('YES' if a - 2b + c == 0 else 'NO')
|
s556075419 | p03759 | u256464928 | 1565927600 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 66 | a,b,c = map(int,input().split())
print('YES' if b-a=c-b else 'NO') |
s927059639 | p03759 | u464912173 | 1565874682 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 73 | a,b,c = map(int, input().split())
print('YES' if b−a==c−b else 'NO') |
s121832509 | p03759 | u821251381 | 1565835262 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 68 | a,b,c = map(int,input().spli())
print("YES" if b-a == c-b else "NO") |
s837377191 | p03759 | u480568292 | 1565629428 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 79 | x = list(input())
y = list(input())+[""]
for o,p in zip(x,y):print(o+p,end="") |
s367507413 | p03759 | u480568292 | 1565629312 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3064 | 79 | x = list(input())
y = list(input())+[""]
for o,p in zip(x,y):print(o+p,end="") |
s820537177 | p03759 | u480568292 | 1565629293 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 88 | x = list(input())
y = list(input())+[""]
print(y)
for o,p in zip(x,y):print(o+p,end="") |
s300088614 | p03759 | u830054172 | 1565529281 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 90 | a,b,c = list(map(int, input().split()))
if b−a==c−b:
print("YES")
else:
print("NO")
|
s534959768 | p03759 | u830054172 | 1565529242 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 92 | a,b,c = list(map(int, input().split()))
if b−a==c−b:
print("YES")
else:
print("NO")
|
s671279998 | p03759 | u904804404 | 1564873691 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 77 | a,b,c = list(map(int,input()))
if a+c ==c:
print("YES")
else:
print("NO") |
s449820684 | p03759 | u701199820 | 1564848585 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 66 | o = input()
e = input()
for x,y in zip(o, e):
print(x+y,end="") |
s033630464 | p03759 | u426964396 | 1564628278 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 95 | l=list(str(input()).split(" "))
if l[0]-l[1]==l[1]-l[2]:
print("YES")
else:
print("NO") |
s911546738 | p03759 | u459965464 | 1564623522 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3060 | 173 | a = input()
b = input()
if len(a)-len(b)==0:
s = "".join(i+j for i, j in zip(a,b))
print(s)
else:
s = "".join(i+j for i, j in zip(a,b))
s = "".join(a[-1])
print(s) |
s664938601 | p03759 | u656572785 | 1563650847 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 373 | #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);
int a, b, c;
cin >> a >> b >> c;
if (b - a == c - b) cout << "YES" << endl;
else cout << "NO" << endl;
return 0;
}
|
s029381525 | p03759 | u502028059 | 1563644713 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 90 | a, b, c = map(int, input().split())
ans = 'NO'
if b - a == c = b:
ans = 'YES'
print(ans) |
s578905294 | p03759 | u050708958 | 1563644435 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 95 | o = input()
e = input()
print(*[a + b for a, b in zip(o, e)], o[-1] * (len(o + e) % 2), sep='') |
s349521755 | p03759 | u602677143 | 1563543074 | Python | Python (3.4.3) | py | Runtime Error | 19 | 3064 | 86 | a,b,c = map(int,input().split())
if b−a == c−b:
print("YES")
else:
print("NO") |
s587670642 | p03759 | u797016134 | 1563502724 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 86 | a,b,c = map(int, input().split())
if b-a = c-b:
print("YES")
else:
print("NO") |
s086359174 | p03759 | u898608852 | 1562630891 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 91 | a=input()
b=input()
c=input()
if a<b and b<c:
answer="Yes"
elif b<a or c<b:
answer="No" |
s980966760 | p03759 | u552122040 | 1562627858 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 219 | #include <bits/stdc++.h>
using namespace std;
int main() {
int a, b, c;
cin >> a >> b >> c;
if (b - a == c - b) {
cout << "YES" << endl;
return 0;
} else {
cout << "NO" << endl;
return 0;
}
}
|
s332927621 | p03759 | u777394984 | 1561827398 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 71 | a,b,c=map(int,input().split())
print("YES" if ((b-a)==(c-d)) else "NO") |
s458674040 | p03759 | u220345792 | 1559612161 | Python | Python (3.4.3) | py | Runtime Error | 21 | 3316 | 388 | from collections import Counter
n = int(input())
data = [k for k in input()]
ans = Counter(data)
for i in range(n-1):
tmp = Counter([k for k in input()])
for j in set(data):
ans[j] = min(ans[j], tmp[j])
# print(j, ans[j], tmp[j], min(ans[j], tmp[j]))
ans_list = list(set(list(ans.elements())))
ans_list.sort()
answer = ""
for i in ans_list:
answer += i*ans[i]
print(answer)
|
s387095160 | p03759 | u223646582 | 1559066477 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 64 | a,b,c=map(int,input().split())
print('YES' if b-a=c-b else 'NO') |
s636719225 | p03759 | u399721252 | 1559016861 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 100 | a, b, c = [ int(v) for v in input().split() ]
if (a-b) == (b-c):
print("YES")
else:
print("NO) |
s293092131 | p03759 | u266874640 | 1558843329 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3060 | 287 | odd = input()
even =input()
even = str(0)+even
odd_list = []
even_list = []
for (a,b) in zip(odd,even):
odd_list.append(a)
even_list.append(b)
even_list.append("")
del even_list[0]
for i in range(len(odd_list)):
print(odd_list[i],end = "")
print(even_list[i],end = "")
|
s059021266 | p03759 | u864453204 | 1558139038 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 95 | a, b, c = mapc(int, input().split())
if (b-a) == (c-b):
print('YES')
else:
print('NO') |
s279273345 | p03759 | u059210959 | 1558064272 | Python | Python (3.4.3) | py | Runtime Error | 58 | 6472 | 280 | # encoding:utf-8
import copy
import random
import bisect #bisect_left これで二部探索の大小検索が行える
import fractions #最小公倍数などはこっち
import math
mod = 10**9+7
a,b,c = map(int,input())
if b-a == c-b:
print("YES")
else:
print("NO")
|
s243715984 | p03759 | u130860429 | 1558053744 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 131 | a,b,c=input().split()
a1=int(a)
b1=int(b)
c1=int(c)
d=b1-a1
e=c1-b1
if d==e:
print('YES')
else :
print('NO')a,b,c=input().split() |
s514262154 | p03759 | u526344885 | 1558046532 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 77 | a,b,c=map(int,input()split())
if b-a==c-b:
print('YES')
else:
print('NO') |
s336150351 | p03759 | u391731808 | 1557622230 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 75 | a,b,c = input().split()
if b-a==c-b:
print("YES")
else:
print("NO") |
s059651328 | p03759 | u528807020 | 1557522500 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 170 | # -*- coding: utf-8 -*-
a,b,c = [int(i) for i in input().split()]
if 1 <= a and b and c m<= 100:
if b - a == c - b:
print("YES")
else:
print("NO") |
s947061537 | p03759 | u107077660 | 1557201166 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 74 | a,b,c = map(int,input())
if b-a == c-b:
print("YeS")
else:
print("NO") |
s914715107 | p03759 | u061912210 | 1556740061 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 78 | a,b,c=map(int,input().split())
if a+c==2*b:
print(Yes)
else:
print(No)
|
s018919553 | p03759 | u061912210 | 1556739993 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 74 | a,b,c=map(int,input().split())
if a+c==2*b:
print(Yes)
else:
print(No) |
s853865921 | p03759 | u061912210 | 1556726874 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 58 | a,b,c=(map(int,input().split()))
print((a+c==2*b?Yes:No))
|
s519780962 | p03759 | u061912210 | 1556684698 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 89 | a=int(input())
b=int(input())
c=int(input())
if a+c==2*b:
print(Yes)
else:
print(No)
|
s895980583 | p03759 | u061912210 | 1556684685 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 87 | a=int(input())
b=int(input())
c=int(input())
if a+c==b:
print(Yes)
else:
print(No)
|
s656692095 | p03759 | u061912210 | 1556684614 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 84 | a=list(map(int,input().split))
if a[0]+a[2]==2*a[1]:
print(Yes)
else:
print(No)
|
s619692505 | p03759 | u061912210 | 1556684591 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 85 | a=list(map(int,input().split))
if a[0]+a[2]==2*a[1]:
print(Yes)
else:
print(No) |
s849104430 | p03759 | u061912210 | 1556684442 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 65 | a=list(map(int,input().split()))
print((a[0]+a[2]=2*a[1]?Yes:No)) |
s365998725 | p03759 | u055941944 | 1556582443 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 154 | # -*- coding utf-8 -*-
o=list(str(input()))
e=list(str(input()))
ans=[]
for i in range(len(o)):
ans+=o[i:i+1]
ans+=e[i:i+1]
print(''.join(ans))
|
s546850265 | p03759 | u331464808 | 1555433250 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 76 | a,b,c=map(int,input().split())
if b-a == c-b:
print(YES)
else:
print(NO) |
s389055124 | p03759 | u013756322 | 1554786583 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 96 | a, b, c = map(int, input().split())
if (b − a == c − b):
print('YES')
else:
print('NO')
|
s522341378 | p03759 | u697108631 | 1554774663 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 95 | list_o=list(input());
list_e=list(input());
for a,b in zip(list_o,list_e):print(a + b,end=""); |
s448977330 | p03759 | u894694822 | 1554696783 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 84 | a, b, c = map(int,input().split())
if b-a == c-b:
print("YES")
else:
plint("NO") |
s500293857 | p03759 | u844005364 | 1554667280 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 76 | a, b, c = map(int, input().split())
print("YES" if b - a = c - b else "NO") |
s734229222 | p03759 | u616522759 | 1554423190 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 93 | a, b, c = map(str, input().split())
if b - a == c - b:
print('YES')
else:
print('NO') |
s784412371 | p03759 | u911575040 | 1554130000 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 86 | x,y,z=map(str,input().split(' '))
if y-x==z-y:
print('YES')
else:
print('NO')
|
s067205872 | p03759 | u268516119 | 1553796947 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 64 | a,b,c=map(int,input())
if a+c==2*b:print("YES")
else:print("NO") |
s507954634 | p03759 | u923712635 | 1553672801 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 91 | a,b,c = [int(x) for x in input().split()]
if(b-a = c-b):
print('YES')
else:
print('NO') |
s140554084 | p03759 | u175034939 | 1553630026 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 85 | a,b,c = map(int,input().split())
if b-a = c-b:
print('YES')
else:
print('NO') |
s925136517 | p03759 | u115994101 | 1553049538 | Python | Python (2.7.6) | py | Runtime Error | 11 | 2692 | 90 | o,e = map(str, raw_input().split())
s = ""
for i in range(len(o)):
s += o[i]+e[i]
print s |
s641425363 | p03759 | u170324846 | 1552480697 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 89 | a, b, c = map(int, input().split())
if b - a == c - b:
print("YES")
else:
pront("NO") |
s071277174 | p03759 | u275934251 | 1551395048 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 64 | a,b,c=map(int,input().split())
print("YES" if b-a==c-b else "NO) |
s428354399 | p03759 | u239981649 | 1549163826 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 72 | a, b, c = map(int, input().split())
print("YES" if b-a == c-b else "NO)
|
s247776670 | p03759 | u492030100 | 1549079917 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 143 | print('YES' if (lambda poles=input().split(): True if (int(poles[1])-input(poles[0]))==(int(poles[2])-input(poles[1])) else False)() else 'NO') |
s220256909 | p03759 | u186838327 | 1548847403 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 81 | a, b, c = map(int, input())
if (b-a) == (c-b):
print('YES')
else:
print('NO') |
s049627621 | p03759 | u172873334 | 1548198654 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 78 | A,B,C=map(int,input().split())
if b-a==c-b:
print("YES")
else:
print("NO") |
s851889849 | p03759 | u371467115 | 1544861040 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 120 | abc=list(map(int,input().split()))
abc.sort(reverce=True)
if a[0]-a[1]=a[1]-a[2]:
print("YES")
else:
print("NO") |
s159135057 | p03759 | u928784113 | 1544512944 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 105 | # -*- coding: utf-8 -*-
a,b,c = map(int,input().split())
if b-a = c-b:
print("YES")
else:
print("NO") |
s354295377 | p03759 | u869728296 | 1541806777 | Python | Python (3.4.3) | py | Runtime Error | 18 | 3064 | 117 | a=input().strip().splt(" ")
b=[int(i) for i in a]
if(b[1]-b[0]==b[2]-b[1]):
print("YES")
else:
print("NO")
|
s404769632 | p03759 | u426108351 | 1540843635 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 89 | a, b, c = map(int, input().split())
if b-a = c-b:
print("YES")
else:
print("NO")
|
s779934806 | p03759 | u131405882 | 1540575044 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 112 | num = list(map(int, input().split()))
if(num[1]-num[0] = num[2]-num[1]):
print('Yes')
else
print('No')
|
s711929408 | p03759 | u131405882 | 1540575001 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 104 | num = list(map(int, input().split()))
if(b-a = c-b):
print('Yes')
a = num[0] + num[1]
print(int(a/24))
|
s553985493 | p03759 | u940102677 | 1538386387 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 71 | print("YES" if int(input())-2*int(input())+int(input()) == 0 else "NO") |
s707502489 | p03759 | u932465688 | 1536960475 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 84 | a,b,c = map(int.input().split())
if (b-a == c-b):
print('YES')
else:
print('NO') |
s669240656 | p03759 | u826263061 | 1536415478 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 90 | a, b, c = list(map(int, input().split()))
if a-b = b-c:
print('YES')
else:
print('NO') |
s592935937 | p03759 | u278864208 | 1536160592 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 86 | a,b,c = map(int,input().split())
if b-a == c-b:
print("YES")
else:
pritn("NO") |
s596320621 | p03759 | u820351940 | 1534445768 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 48 |
print("ABC" if int(input()) < 1000 else "ABD")
|
s616196750 | p03759 | u879870653 | 1533855184 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 97 | a,b,c=map(int,input().split())
if A==b and b==c:
print("YES")
else:
print("NO")
|
s404752147 | p03759 | u005260772 | 1531191728 | Python | Python (2.7.6) | py | Runtime Error | 10 | 2568 | 156 | s1 = raw_input()
s2 = raw_input()
ans = ''
for i in range(min(len(s1), len(s2))):
ans += s1[i] + s2[i]
if len(s2) < len(s1):
ans += s1[-1]
print ans |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.