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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s116365377 | p03860 | u602972961 | 1590169923 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 35 | s=input()
print('A{}C'.format(s[8]) |
s196741903 | p03860 | u602972961 | 1590169756 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 37 | s = input()
print('A{}C'.format(s[8]) |
s790373012 | p03860 | u611090896 | 1590107549 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3068 | 48 | a,b,c=map(input().split())
print(a[0]+b[0]+c[0]) |
s469579008 | p03860 | u728611988 | 1589923771 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 104 | a, b, x = map(int, input().split())
A = b//x
B = a//x
if a%x == 0:
print(A-B+1)
else:
print(A-B) |
s142151282 | p03860 | u728611988 | 1589923740 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 104 | a, b, x = map(int, input().split())
A = b//x
B = a//x
if B%x == 0:
print(A-B+1)
else:
print(A-B) |
s959174051 | p03860 | u728611988 | 1589922824 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 50 | a, b, c = map(input().split())
print(a[0]b[0]c[0]) |
s889132715 | p03860 | u559346857 | 1589731992 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 25 | orint("A"+input()[8]+"C") |
s114050149 | p03860 | u122428774 | 1589689377 | Python | PyPy3 (2.4.0) | py | Runtime Error | 190 | 38256 | 241 | import java.util.*;
class Main {
public static void main(String args[]) {
Scanner inp = new Scanner(System.in);
inp.next();
char s = inp.next().toCharArray()[0];
System.out.println("A" + s + "C");
}
} |
s775595156 | p03860 | u187883751 | 1589502696 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 35 | s=input()
print('A'+input()[8]+'C') |
s489141718 | p03860 | u887147934 | 1589329345 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 39 | s=input()
A=str(A+s[8]+C)
print(str(A)) |
s651580538 | p03860 | u604655161 | 1588721304 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3064 | 132 | #AtCoder *** Contest
def ABC_48_A():
A,B,C = map(str, input().split())
print('A' + B[0] + 'C')
if __name__ == '__main__':
|
s887002005 | p03860 | u218547085 | 1588638047 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 38 | s=input()
i=int(input())
print(s[i-1]) |
s333241185 | p03860 | u218547085 | 1588637989 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 30 | print(input()[int(input())-1]) |
s373114583 | p03860 | u218547085 | 1588637921 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 30 | print(input()[int(input())-1]) |
s991233081 | p03860 | u617659131 | 1588457381 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 43 | print(input()[0] + input()[0] + input()[0]) |
s416937320 | p03860 | u257265865 | 1588114053 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 50 | x,y,z=map(int,input().split())
print('A'+y[0]+'C') |
s187257052 | p03860 | u568711768 | 1588008003 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 29 | S=input()
print("A"+s[0]+"C") |
s290728691 | p03860 | u227085629 | 1587787703 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 59 | s = input()
a = s.rstrip()split()
b = a[1]
print('A'+b+'C') |
s370435486 | p03860 | u235066013 | 1587683511 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 52 | a,b,c=[for i in input().split()]
print("A"+b[0]+"C") |
s954938936 | p03860 | u566321790 | 1586983403 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 63 | a, b, c = list(str, input().split())
print(a[0] + b[0] + c[0]) |
s106259794 | p03860 | u239772565 | 1586742344 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 45 | A,x,c = input().split()
print(A[0]+x[0]+C[0]) |
s933798915 | p03860 | u676994160 | 1586666938 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 139 | from sys import stdin, stdout
a, b, x = [int(x) for x in stdin.readline().rstrip().split()]
stdout.write(str(b // x - (a - 1) // x) + "\n") |
s152359281 | p03860 | u982591663 | 1586570130 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 59 | A, B, C = map(int, input().split())
print(A[0]+B[0]+C[0])
|
s360528824 | p03860 | u731448038 | 1586539768 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 48 | s = list(input().split()[1])[0]
print(f'A{s}C') |
s309341086 | p03860 | u731448038 | 1586539722 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 42 | s = input().split()[1][0]
print(f'A{s}C') |
s683610150 | p03860 | u852790844 | 1586372600 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 56 | a, s, c = map(int,input().split())
print(a[0]+s[0]+c[0]) |
s455495021 | p03860 | u263691873 | 1586122032 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 65 | A=input()
s = input()
C=input()
x = s[0].upper()
print("A"+x+"C") |
s960243868 | p03860 | u080986047 | 1585936983 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 46 | a,b,c = input().split()
print("A" + B[0] +"C") |
s860167798 | p03860 | u440129511 | 1585313452 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 48 | a,s,c=map(input().split())
print(a[0]+s[0]+c[0]) |
s262522662 | p03860 | u440129511 | 1585313366 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 48 | a,s,c=str(input().split())
print(a[0]+s[0]+c[0]) |
s432039339 | p03860 | u440129511 | 1585313313 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 50 | a,s,c=input().split()
print(f'{a[0]}{s[0]}{c[0]}') |
s235841228 | p03860 | u440129511 | 1585313287 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 59 | a,s,c=map(str,input().split())
print(f'{a[0]}{s[0]}{c[0]}') |
s298955089 | p03860 | u440129511 | 1585313176 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 55 | a,s,c=str(input().split())
print(f'{a[0]}{s[0]}{c[0]}') |
s970038471 | p03860 | u440129511 | 1585312587 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 72 | a,s,c=map(str(input().split()).capitalize())
print(f'{"A"}{s[0]}{"C"}')
|
s939689273 | p03860 | u440129511 | 1585312458 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 55 | s=str(input()).capitalize()
print(f'{"A"}{s[0]}{"C"}')
|
s396275431 | p03860 | u016323272 | 1584904721 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3064 | 66 | #ABC048.B
a,b,x = map(int,input().split())
print(b//x - (a-1)//x) |
s687031064 | p03860 | u920621778 | 1584718327 | Python | PyPy3 (2.4.0) | py | Runtime Error | 191 | 39792 | 119 | a, b, x = map(int, input().split())
count = len(list(filter(lambda t: t % x == 0, list(range(a, b + 1)))))
print(count) |
s510991095 | p03860 | u903005414 | 1584705960 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3064 | 368 | N, x = map(int, input().split())
A = list(map(int, input().split()))
if len(A) % 2 == 0:
A = A + [0]
# print('A', A)
ans = 0
for i in range(1, N, 2):
total = A[i - 1] + A[i]
diff = total - x
if diff <= 0:
continue
v1 = min(A[i], diff)
v2 = diff - v1
A[i] -= v1
A[i - 1] -= v2
ans += v1 + v2
# print('A', A)
print(ans)
|
s116846622 | p03860 | u634248565 | 1584039162 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 57 | x = input()
y = input()
z = input()
print x[0]+y[0]+z[0] |
s419295124 | p03860 | u017719431 | 1583993840 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 171 | a, b, x = map(int, input().split())
def count(a, b, x):
temp = b // x + 1
if a == 0:
return temp
else:
return temp - ((a-1) / x + 1)
print(count(a, b, x)) |
s284690968 | p03860 | u017719431 | 1583993634 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 163 | a, b, x = map(int, input().split())
def count(a, b, x):
temp = b // x
if a == 0:
return temp
else:
return temp - ((a-1) / x)
print(count(a, b, x)) |
s528769195 | p03860 | u075595666 | 1583902174 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 85 | a,b,x = map(int,input().split())
ans = b//x - a//x
if a%x == 0:
ams += 1
print(ans) |
s862179821 | p03860 | u075595666 | 1583901875 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 125 | a,b,x = map(int,input().split())
if a == 0:
ans = b//x + 1
else:
ans = b//x - a//x
if a%x == 0:
ams += 1
print(ans) |
s017478938 | p03860 | u075595666 | 1583900908 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 173 | a,b,x = map(int,input().split())
if a == 0:
ans = b//x + 1
else:
ans = (b-a+1)//x
if a%x == 0 and b%x == 0:
ans = ans + 1
if x == 1:
ans = ans - 1
print(ans) |
s348593344 | p03860 | u096616343 | 1583809266 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 35 | S = input()
print("A" + a[8] + "C") |
s356083073 | p03860 | u163874353 | 1583758788 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 62 | a, b, c = map(int, input().split())
print(a[0] + b[0] + c[0])
|
s515792695 | p03860 | u959390099 | 1583094096 | Python | PyPy3 (2.4.0) | py | Runtime Error | 160 | 38256 | 48 | s1, s2, s3 = input().split()
print(f"A{s2[0]}C") |
s525183023 | p03860 | u959390099 | 1583029278 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 61 | s1, s2, s3 = input().split()
print(f"{s1[0]}{s2[0]}{s3[0]}") |
s484767149 | p03860 | u959390099 | 1583029045 | Python | PyPy3 (2.4.0) | py | Runtime Error | 181 | 38256 | 61 | s1, s2, s3 = input().split()
print(f"{s1[0]}{s2[0]}{s3[0]}") |
s654041412 | p03860 | u223663729 | 1582762886 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 33 | A, S, C = input()
print(A+S[0]+C) |
s334042219 | p03860 | u228026606 | 1582418255 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 43 | s = input()[8]
print('A' + s + 'C') |
s840639679 | p03860 | u066855390 | 1582357156 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 1 | v |
s483229538 | p03860 | u066855390 | 1582357084 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 30 | s = input()[0]
print("A"+s+"C" |
s098007584 | p03860 | u428747123 | 1582352238 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 30 | print(s[0][0]+s[1][0]+s[2][0]) |
s506600535 | p03860 | u702018889 | 1581821392 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 60 | a,b,c=map(list,input().split())
print("".join("A",b[0],"C")) |
s587844893 | p03860 | u702018889 | 1581821278 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 50 | a,b,c=map(int,input().split())
print("A",b[0],"C") |
s138347206 | p03860 | u484229314 | 1581741931 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 59 | a,b,c=[int(_) for _ in input().split()]
print('A'+b[0]+'C') |
s815441640 | p03860 | u904995051 | 1581710077 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 24 |
print("A%sC"%inut()[8]) |
s071883423 | p03860 | u772649753 | 1581312530 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 102 | s = input()
s1 = s[1]
name = []
name.append("A")
name.appemd(s1)
name.append("C")
print("".join(name)) |
s519889841 | p03860 | u772062359 | 1580875283 | Python | PyPy3 (2.4.0) | py | Runtime Error | 161 | 38384 | 77 | a = list(map(int,input().split()))
b = a[1]
c = b[0]
print("A{}C".format(c)) |
s198065444 | p03860 | u772062359 | 1580875165 | Python | PyPy3 (2.4.0) | py | Runtime Error | 165 | 38256 | 62 | a = list(map(int,input().split()))
print("A{}C".format(a[1])) |
s723871365 | p03860 | u752552310 | 1580566779 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 81 | a, b, c = map(int, input().split())
a = a[0]
b = b[0]
c = c[0]
print(a + b + c) |
s742115214 | p03860 | u516447519 | 1579834043 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 85 | A,B,C = [str(i) for i in input().split()]
N = str()
N = A[0] + B[0] + C[0]
ptint(N) |
s487854069 | p03860 | u871596687 | 1579384524 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 137 | a,b,x = map(int,input().split())
#if a > x or b < x:
# print("0")
elif a%x == 0:
print(b//x-a//x+1)
else:
print(b//x-a//x)
|
s656586767 | p03860 | u871596687 | 1579384354 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 135 | a,b,x = map(int,input().split())
if a > x or b < x:
print("0")
elif a%x == 0:
print(b//x-a//x+1)
else:
print(b//x-a//x)
|
s691302245 | p03860 | u871596687 | 1579384326 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 136 | a,b,x = map(int,input().split())
if a > x or b < x:
print("0")
elif a%xx == 0:
print(b//x-a//x+1)
else:
print(b//x-a//x)
|
s476379785 | p03860 | u427984570 | 1579058519 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 99 | import sys
input=sys.stdin.readline
a,b,c = map(int,input().split())
ans = b//c - a//c
print(ans) |
s597358737 | p03860 | u427984570 | 1579057699 | Python | PyPy3 (2.4.0) | py | Runtime Error | 168 | 38384 | 110 | a,b,c = map(int,input().split())
count = 0
for i in range(a,b+1):
if i % c == 0:
count += 1
print(count) |
s103903089 | p03860 | u431981421 | 1578947678 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 109 | a,b,x = map(int,input().split())
s = b / x
if a == 0:
print(s + 1)
else:
k = (a - 1) / x
print(s - k) |
s336663595 | p03860 | u686036872 | 1578725598 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 27 | s=input()
print("A"s[0]"C") |
s457285071 | p03860 | u274962354 | 1578535933 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 50 | a,b,x=map(int,input().split())print(b//x-(a-1)//x) |
s189895498 | p03860 | u403331159 | 1578525522 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 63 | a,b,x=map(int,input().split())
ans=(b//x)-((a-1)//x)
print(ans) |
s424556442 | p03860 | u154979004 | 1578002468 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 22 | print('A%sC'%input[8]) |
s413814184 | p03860 | u355137116 | 1577305936 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 51 | a,b,x=map(int,input().split())
print(b//x-(a-1)//x) |
s560681560 | p03860 | u355137116 | 1577305794 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 122 | a,b,x = map(int, input().split())
ans_a = a // x
ans_b = b // x
ans = ans_a - ans_b
if a % x == 0:
ans += 1
print(ans)
|
s319786641 | p03860 | u374146618 | 1577233948 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 40 | wk = input().split()
print(A+wk[1][0]+C) |
s870392836 | p03860 | u624689667 | 1577113460 | Python | PyPy3 (2.4.0) | py | Runtime Error | 166 | 38512 | 44 | _, s, _ = input().split()
print(f"A{s[0]}C") |
s524922440 | p03860 | u309141201 | 1576807508 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 97 | s = input()
s = s.lstrip('AtCoder ')
s = s.rstrip(' Contest ')
# print(s)
print('A' + s[0] + 'C') |
s381703937 | p03860 | u309141201 | 1576807339 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 85 | s = input()
s = s.lstrip('AtCoder ')
s = s.rstrip(' Contest')
print('A' + s[0] + 'C') |
s135107777 | p03860 | u181215519 | 1576612071 | Python | Python (3.4.3) | py | Runtime Error | 18 | 3064 | 74 | s1, s2, s3 = map( str, input().split() )
print( "A" + list(s2)[0] + "C") |
s466418310 | p03860 | u181215519 | 1576611694 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 87 | s1, s2, s3 = map(string, input().split() )
s2p = list( s2 )[0]
print( s1 + s2p + s3 ) |
s867423448 | p03860 | u961674365 | 1575865604 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 40 | _,s_=input().split()
print('A'+s[0]+'C') |
s990368587 | p03860 | u780475861 | 1575613971 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 53 | a,b,c = input(),input(),input()
print(a[0]+b[0]+c[0]) |
s200661036 | p03860 | u849029577 | 1575188335 | Python | PyPy3 (2.4.0) | py | Runtime Error | 168 | 38384 | 116 | a,b,x = map(int, input().split())
b_num = int(b//x)
a_num = int((a-1)//x)
ans = b_num - a_num
print(ans)
|
s253420121 | p03860 | u849029577 | 1575185395 | Python | PyPy3 (2.4.0) | py | Runtime Error | 179 | 38256 | 271 | a, b, x = map(int, input().split())
count = 0
if a == 0:
count = 1
#print((a/x).is_integer())
if (a/x).is_integer() == True:
#print("BBBBBBBBBB")
print((b//x)-(a//x)+1)
if (a/x).is_integer() == False:
#print("aaaaaaaaaaaaaa")
print((b//x)-(a//x))
|
s883166508 | p03860 | u457554982 | 1575002028 | Python | PyPy3 (2.4.0) | py | Runtime Error | 181 | 38512 | 205 | import copy
[n,x]=list(map(int,input().split()))
a=list(map(int,input().split()))
a0=copy.copy(a)
ans=0
for i in range(n-1):
while a[i]+a[i+1]>x:
a[i+1]-=1
for i in range(n):
ans+=a0[i]-a[i]
print(ans) |
s181488131 | p03860 | u476124554 | 1574169426 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 44 | a,b,c = input().split()
print(a[0]+b[0]+c[0] |
s130692574 | p03860 | u492447501 | 1573951199 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 36 | A,B,C = input()
print("A"+B[0]+"C") |
s961463476 | p03860 | u557494880 | 1573528989 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 62 | a,b,c = map(input().split())
ans = 'A' + b[0] + 'C'
print(ans) |
s935219555 | p03860 | u143278390 | 1573488273 | Python | Python (3.4.3) | py | Runtime Error | 18 | 3056 | 183 | a,b,x=[int(i) for i in input().split()]
count=0
count=[_ for i in range(a,b+1) if i%x==0]
print(len(count))
'''for i in range(a,b+1):
if(i%x==0):
count+=1
print(count)'''
|
s076934314 | p03860 | u088650340 | 1573445106 | Python | PyPy3 (2.4.0) | py | Runtime Error | 177 | 38640 | 315 | #!/usr/bin/env python3
# https://abc048.contest.atcoder.jp/tasks/arc064_a
n, x = [int(x) for x in input().split()]
a = [int(x) for x in input().split()]
c = 0
for i in range(1, len(a)):
b = a[i - 1] + a[i]
d = b - x
if d > 0:
c += d
e = min(a[i], d)
a[i] -= e
d -= e
if d > 0:
a[i - 1] -= d
print(c) |
s254409225 | p03860 | u124498235 | 1573095832 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 84 | a, b = map(int, input().split())
if a + b > 24:
print (a+b - 24)
else:
print (a+b) |
s135872928 | p03860 | u754022296 | 1572911156 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 55 | a, b, c = map(int, input().split())
print("A"+b[0]+"C") |
s792536122 | p03860 | u595716769 | 1572677498 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 64 | a,b,c = map(input().split())
out = a[0] + b[0] + c[0]
print(out) |
s973432568 | p03860 | u623516423 | 1572647717 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 53 | a,b,x=list(map(int,input().split()))
print(b//x-a//x) |
s495589606 | p03860 | u623516423 | 1572647417 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 58 | a,b,c=list(map(int,input().split()))
print(a[0]+b[0]+c[0]) |
s626136282 | p03860 | u923659712 | 1572564277 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 125 | a,b,x = map(int,input().split())
num= range(a,b)
d =0
for c in num:
if c%x == 0:
d+=1
else:
continue
print(d) |
s295120326 | p03860 | u182765930 | 1571954478 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 35 | b=input().split
print("A"+b[1]+"c") |
s911313578 | p03860 | u897436032 | 1571788742 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 105 | Title = input().split(' ')
answer = ""
for smallTitle in Title:
answer += smallTitle[0]
return answer |
s279581897 | p03860 | u506858457 | 1571452866 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 48 | A,B,C=map(input().split())
print(A[0]+B[0]+C[0]) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.