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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s012522244 | p02399 | u498462680 | 1546256927 | Python | Python3 | py | Runtime Error | 0 | 0 | 161 | a,b = [float(i) for i in input().split()]
d = int(a/b)
r = int(a) % int(b)
f = a/b
f = round(decimal.Decimal(f), 10)
print(str(d) + " " + str(r) + " " + str(f))
|
s526686714 | p02399 | u498462680 | 1546256968 | Python | Python3 | py | Runtime Error | 0 | 0 | 163 | a,b = [float(i) for i in input().split()]
d = int(a/b)
r = int(a) % int(b)
f = a/b
f2 = round(decimal.Decimal(f), 10)
print(str(d) + " " + str(r) + " " + str(f2))
|
s009640640 | p02399 | u928633434 | 1555813076 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | a,b = (int(x) for x in input().split())
d = a // b
r = a % b
(float) f = a / b
print (str(d) + " " + str(r) + " " + str(f))
|
s872140934 | p02399 | u928633434 | 1555813098 | Python | Python3 | py | Runtime Error | 0 | 0 | 141 | a,b = (int(x) for x in input().split())
d = a // b
r = a % b
(float) f = (float)a / (float)b
print (str(d) + " " + str(r) + " " + str(f))
|
s170895651 | p02399 | u115403933 | 1555848711 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | ab = input().split()
a = ab[0]
b = ab[1]
d = int(a / b)
r = a % b
f = a / b
print(d,r,f)
|
s606769430 | p02399 | u638889288 | 1555898651 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | a,op,b=map(str,input().split())
a=int(a)
b=int(b)
print("%d %d %0.5f",a/b,a%b,a/b)
|
s296600812 | p02399 | u525395303 | 1555982377 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | a, b = gets.split.map(&:to_i)
printf "%d %d %.5f", a / b, a % b, a.to_f / b
|
s466445966 | p02399 | u093488647 | 1555999512 | Python | Python3 | py | Runtime Error | 0 | 0 | 133 | import math
data = input().split()
a = int(data[0])
b = int(data[1])
d = math.float(a/b)
r = a%b
f = a/b
print(d, " ", r, " ", f)
|
s814149610 | p02399 | u651717882 | 1556038479 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | a,b=input().split()
a=int(a)
b=int(b)
a/b=d
d=int(d)
a%b=r
r=int(r)
a/b=f
f = float(f)
print(d,r,f)
|
s127590466 | p02399 | u651717882 | 1556038539 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | a,b=input().split()
a=int(a)
b=int(b)
a//b=d
d=int(d)
a%b=r
r=int(r)
a/b=f
f = float(f)
print(d,r,f)
|
s463216257 | p02399 | u592815095 | 1556203293 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | a,b=map(int,input().split());print("{:d},{:d},{:.10f}".format(a//d,a%b,a/b))
|
s679186798 | p02399 | u592815095 | 1556203338 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | a,b=map(int,input().split());print("{:d} {:d} {:.10f}".format(a//d,a%b,a/b))
|
s713453043 | p02399 | u592815095 | 1556203549 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | a,b=map(int,input().split());print(a//b,a%b."{:10.10f}".format(a/b))
|
s187844036 | p02399 | u592815095 | 1556203561 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | a,b=map(int,input().split());print(a//b,a%b."{0:10.10f}".format(a/b))
|
s846848002 | p02399 | u592815095 | 1556203571 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | a,b=map(int,input().split())
print(a//b,a%b."{0:10.10f}".format(a/b))
|
s808899960 | p02399 | u592815095 | 1556203590 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | a,b=map(int,input().split())
print(a//b,a%b."{0:10.20f}".format(a/b))
|
s953723471 | p02399 | u630518143 | 1556543764 | Python | Python3 | py | Runtime Error | 0 | 0 | 130 |
nums = [int(e) for e in input().split()]
a = int(nums[0]/nums[1])
b = int(nums[0]%nums[1])
c = nums[0]/nums[1] - a
print(a,b,c)a
|
s516297934 | p02399 | u630518143 | 1556543816 | Python | Python3 | py | Runtime Error | 0 | 0 | 135 |
nums = [int(e) for e in input().split()]
a = int(nums[0]/nums[1])
b = int(nums[0]%nums[1])
c = decimaru(nums[0]/nums[1])
print(a,b,c)
|
s624168506 | p02399 | u777181309 | 1556847293 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | a, b = int(input())
d = a//b
r = a%b
f = a/b
print(d, r, f)
|
s992216238 | p02399 | u823030818 | 1422409975 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | (a, b) = [int(x) for x in input().split()]
di = a // b
m = a % b\
df = a / b
print(dl, m, df) |
s683401164 | p02399 | u823030818 | 1422410109 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | (a, b) = [int(x) for x in input().split()]
di = a // b
m = a % b\
df = a / b
print(dl, m, df) |
s581400598 | p02399 | u823030818 | 1422410121 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | (a, b) = [int(x) for x in input().split()]
di = a // b
m = a % b
df = a / b
print(dl, m, df) |
s649083872 | p02399 | u823030818 | 1422410293 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | (a, b) = [int(x) for x in input().split(' ')]
di = a // b
m = a % b
df = a / b
print(dl, m, df) |
s969329185 | p02399 | u823030818 | 1422410481 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | (a, b) = [int(x) for x in input().split(' ')]
di = a // b
m = a % b
df = a / b
print(dl, m, df) |
s456059900 | p02399 | u823030818 | 1422410497 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | (a, b) = [int(x) for x in input().split(' ')]
di = a // b:
m = a % b:
df = a / b:
print(dl, m, df) |
s740744699 | p02399 | u823030818 | 1422410542 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | (a, b) = [int(x) for x in input().split(' ')]
dl = a // b:
m = a % b:
df = a / b:
print(dl, m, df) |
s402739797 | p02399 | u823030818 | 1422410554 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | (a, b) = [int(x) for x in input().split(' ')]
dl = a // b:
m = a % b:
df = a / b:
print(dl, m, df) |
s045690645 | p02399 | u823030818 | 1422411072 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | (a, b) = [int(x) for x in input().split(' ')]
di = a // b
m = a % b
df = a / b
print('{0} {1} {2:.8f}'.di, m, df)) |
s122138245 | p02399 | u823030818 | 1422411156 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | (a, b) = [int(x) for x in input().split()]
di = a // b
m = a % b
df = a / b
print('{0} {1} {2:,8f}'.di, m, df)) |
s158180599 | p02399 | u823030818 | 1422411232 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | (a, b) = [int(x) for x in input().split()]
di = a // b
m = a % b
df = a / b
print('{0} {1} {2:.8f}'.di, m, df)) |
s407664076 | p02399 | u823030818 | 1422411287 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | (a, b) = [int(x) for x in input().split()]
di = a // b
m = a % b
df = a / b
print('{0} {1} {2:.8f}'.format.di, m, df)) |
s257390653 | p02399 | u823030818 | 1422411297 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | (a, b) = [int(x) for x in input().split()]
di = a // b
m = a % b
df = a / b
print('{0} {1} {2:.8f}'.format().di, m, df)) |
s935862397 | p02399 | u527848444 | 1422841147 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | (a,b) = [int (x) for x in input().split()]
x = a // b
y = a % b
z = a / b
print('{1} {2} {3:.6f}'.format(x,y,z)) |
s010251698 | p02399 | u442346200 | 1422841185 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | (a, b) = [int(x) for x in input().split()]
x = a // b
y = a % b
z = a / b
print('{1} {2} {3:6f}'.format(x, y, z)); |
s307299853 | p02399 | u442346200 | 1422841207 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | (a, b) = [int(x) for x in input().split()]
x = a // b
y = a % b
z = a / b
print('{1} {2} {3:.6f}'.format(x, y, z)); |
s865948506 | p02399 | u745846646 | 1422841319 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | (a, b) = [int (x) for x in input().split()]
x = a // b
y = a % b
z = a / b
print('{1} {2} {3:.6f}'.format(x,y,z)) |
s546526950 | p02399 | u281873326 | 1427420384 | Python | Python | py | Runtime Error | 0 | 0 | 109 | [a,b]=map(raw_input().split())
x=long(a)
y=long(b)
z=float(x)
w=float(y)
d=x/y
r=x%y
f=1.0000*z/w
print d,r,f |
s835101368 | p02399 | u281873326 | 1427421193 | Python | Python | py | Runtime Error | 0 | 0 | 109 | [a,b]=map(raw_input().split())
x=long(a)
y=long(b)
z=float(x)
w=float(y)
d=x/y
r=x%y
f=1.0000*z/y
print d,r,f |
s813288730 | p02399 | u137212517 | 1429545141 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | r = int(input())
print(r * r * 3.14159, 2 * r * 3.14159) |
s835813230 | p02399 | u604774382 | 1429791231 | Python | Python3 | py | Runtime Error | 0 | 0 | 141 | import sys
a, b = [ int( val ) for val in sys.stdin.readline().split( ' ' ) ]
print( "{} {} {0:.5f}".format( a/b, a%b, float(a)/float(b) ) ) |
s396252584 | p02399 | u604774382 | 1429791770 | Python | Python3 | py | Runtime Error | 0 | 0 | 139 | import sys
a, b = [ int( val ) for val in sys.stdin.readline().split( ' ' ) ]
print( "{} {} {0:f}".format( a/b, a%b, float(a)/float(b) ) ) |
s951471974 | p02399 | u669360983 | 1430142273 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | a,b=map(int, input().split())
a,b=map(int, input().split())
print('%d %d %f' %(a/b, a%b, a/b)) |
s838948274 | p02399 | u682755774 | 1431809086 | Python | Python | py | Runtime Error | 0 | 0 | 122 | #coding:UTF-8
n = 0
a,b,c = map(int,raw_input().split())
for i in range(a,b+1):
if c % i == 0:
n += 1
print n |
s119593277 | p02399 | u446066125 | 1437959267 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | (a, b) = [int(i) for i in input().split()]
d = a // b
r = a % b
f = a / b
print('s% s% %.5f' (d, r, f)) |
s631442404 | p02399 | u446066125 | 1437959282 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | (a, b) = [int(i) for i in input().split()]
d = a // b
r = a % b
f = a / b
print('s% s% %.5f' % (d, r, f)) |
s909318253 | p02399 | u473077745 | 1437959547 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | (a, b) = [int(i) for i in input()]
2 d = a // b
3 r = a % b
4 f = a / b
5 print('%s %s %.5f' % (d, r, f) |
s155754216 | p02399 | u473077745 | 1437959652 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | (a, b) = [int(i) for i in input()]
d = a // b
r = a % b
f = a / b
print('%s %s %.5f' % (d, r, f) |
s992997425 | p02399 | u255164080 | 1439772323 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | (a, b) = [int(i) for i in input().split()]
d = int(a / b)
r = a % b
f = a / b
print('%s %s %.5f' % (d, r, f)) |
s118666565 | p02399 | u473077745 | 1439830906 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | (a, b) = [int(i) for i in input()]
d = a // b
r = a % b
f = a / b
print('%s %s %.5f' % (d, r, f) |
s244654078 | p02399 | u473077745 | 1439831377 | Python | Python3 | py | Runtime Error | 0 | 0 | 151 | (a, b) = [int(i) for i in input()]
while True:
d = a // b
r = a % b
f = a / b
print( '{0:d} {1:d} {2:.5f}'.format( d, r, f))
break |
s298016485 | p02399 | u473077745 | 1439831496 | Python | Python3 | py | Runtime Error | 0 | 0 | 159 | a, b) = [int(i) for i in input().split()]
while True:
d = a // b
r = a % b
f = a / b
print( '{0:d} {1:d} {2:.5f}'.format( d, r, f))
break |
s929666895 | p02399 | u501414488 | 1439854802 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | input()
data = [int(i) for i in input().split()]
print(min(data), max(data), sum(data)) |
s773352039 | p02399 | u978086225 | 1439859113 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | input()
data = [int(i) for i in input().split()]
print(min(data), max(data), sum(data)) |
s856588133 | p02399 | u978086225 | 1439859839 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | (a, b) = [int(i) for i in input().split()]
d = int(a / b)
r = a % b
f = a / b
print('%s %s %. 5f' % (d, r, f)) |
s865963081 | p02399 | u782850731 | 1440885405 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | print('{0[0]} {0[1]} {0[2]:.5f}'.format(
(lambda a, b: (a // b, a % d, a / b))(
*map(int, input().split()))) |
s646684428 | p02399 | u782850731 | 1440885596 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | print('{0[0]} {0[1]} {0[2]:.6f}'.format(
(lambda a, b: (a // b, a % d, a / b))(
*map(int, input().split()))) |
s222341016 | p02399 | u782850731 | 1440885609 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | print('{0[0]} {0[1]} {0[2]}'.format(
(lambda a, b: (a // b, a % d, a / b))(
*map(int, input().split()))) |
s949827039 | p02399 | u782850731 | 1440885628 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | print('{0[0]} {0[1]} {0[2]}'.format(
(lambda a, b: (a // b, a % b, a / b))(
*map(int, input().split()))) |
s344551206 | p02399 | u627893595 | 1443595425 | Python | Python3 | py | Runtime Error | 0 | 0 | 144 | a,b,c = map(int,input().split()) ;
count = 0 ;
for i in range(a,b+1) :
d = c % i ;
if d == 0 :
count = count +1
print("%d" % count) |
s040246618 | p02399 | u529272062 | 1447042448 | Python | Python | py | Runtime Error | 0 | 0 | 146 | from decimal import *
a,b=map(int, raw_input().split())
d=a/b
r=a%b
Decimal(f)=Decimal(a)/Decimal(b)
print "{0} {1} {2}".format(d, r, Decimal(f)) |
s145993432 | p02399 | u811841526 | 1449072801 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | a,b = map(int,input().split())
d = a // b
r = a % b
f = a / b
print(' '.join(map(str[d,r,f]))) |
s648636804 | p02399 | u038005340 | 1453256883 | Python | Python | py | Runtime Error | 0 | 0 | 111 | a,b = map( int , raw_input().split() )
int(d) = a / b
int(r) = a % b
float(f) a / b
print "%d %d %f" %(d,r,f) |
s731113052 | p02399 | u038005340 | 1453256890 | Python | Python | py | Runtime Error | 0 | 0 | 111 | a,b = map( int , raw_input().split() )
int(d) = a / b
int(r) = a % b
float(f) a / b
print "%d %d %f" %(d,r,f) |
s800169058 | p02399 | u038005340 | 1453256903 | Python | Python | py | Runtime Error | 0 | 0 | 111 | a,b = map( int , raw_input().split() )
int(d) = a / b
int(r) = a % b
float(f) a / b
print "%d %d %d" %(d,r,f) |
s768655344 | p02399 | u038005340 | 1453256923 | Python | Python | py | Runtime Error | 0 | 0 | 111 | a,b = map( int , raw_input().split() )
int(d) = a / b
int(r) = a % b
float(f) a / b
print "%d %d %d" %(d,r,f) |
s329513152 | p02399 | u038005340 | 1453256987 | Python | Python | py | Runtime Error | 0 | 0 | 111 | a,b = map( int , raw_input().split() )
int(d) = a / b
int(r) = a % b
float(f) a / b
print "%d %d %f" %(d,r,f) |
s687258696 | p02399 | u038005340 | 1453257057 | Python | Python | py | Runtime Error | 0 | 0 | 113 | a,b = map( int , raw_input().split() )
int(d) = a / b
int(r) = a % b
float(f) = a / b
print "%d %d %f" %(d,r,f) |
s313662101 | p02399 | u970436839 | 1453303711 | Python | Python | py | Runtime Error | 0 | 0 | 101 | a, b = map(int, raw_input().split())
c = double(a)
d = double(b)
print "%d %d %.5f" %(a/b, a%b, c/d) |
s723683075 | p02399 | u724923896 | 1453304517 | Python | Python | py | Runtime Error | 0 | 0 | 98 | a, b = map(int, raw_input().split())
d = a/b
r = a%b
f = double(a/b)
print "%d %d %f" %(d, r, f) |
s434975141 | p02399 | u834416077 | 1453347555 | Python | Python | py | Runtime Error | 0 | 0 | 72 | a,b = map(double,raw_input().split())
print "%d %d %f" %(a/b, a%b, a/b) |
s416094857 | p02399 | u885889402 | 1453364835 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | import math
a=int(input())
L = 2*math.pi*a
s = a*a*math.pi
print("%.6f"%(L),"%.6f"%(s)) |
s398080251 | p02399 | u828153094 | 1453397954 | Python | Python | py | Runtime Error | 0 | 0 | 113 | a, b, c = map(int, raw_input().split())
d = a / b
r = a % b
f = float(a) / float(b)
print '%d %d %.6f' %(d, r, f) |
s030134807 | p02399 | u828153094 | 1453398073 | Python | Python | py | Runtime Error | 0 | 0 | 111 | a, b, c = map(int, raw_input().split())
d = a / b
r = a % b
f = float(a) / float(b)
print '%d %d %f' %(d, r, f) |
s701901507 | p02399 | u828153094 | 1453398232 | Python | Python | py | Runtime Error | 0 | 0 | 123 | a, b, c = map(int, raw_input().split())
d = a / b
r = a % b
A = float(a)
B = float(b)
f = A / B
print '%d %d %f' %(d, r, f) |
s773371141 | p02399 | u619765879 | 1453440238 | Python | Python | py | Runtime Error | 0 | 0 | 81 | a, b = map(int, raw_input().split())
print '%d %d %.6f' % (a/b, a%b, double(a/b)) |
s896027477 | p02399 | u619765879 | 1453440335 | Python | Python | py | Runtime Error | 0 | 0 | 79 | a, b = map(int, raw_input().split())
print '%d %d %f' % (a/b, a%b, (double)a/b) |
s258260453 | p02399 | u532962080 | 1453783320 | Python | Python | py | Runtime Error | 0 | 0 | 71 | a,b = map(int, raw_input().split())
print a/b a%b "%.6f" % (a/float(b)) |
s452265769 | p02399 | u532962080 | 1453783392 | Python | Python | py | Runtime Error | 0 | 0 | 85 | a,b = map(int, raw_input().split())
print "%d/%d %d%%d %.5f" % (a,b, a,b, a/float(b)) |
s032273547 | p02399 | u177295149 | 1453791011 | Python | Python | py | Runtime Error | 0 | 0 | 108 | a,b = map(int, raw_input().split())
d = int(a/b)
r = a%b
float(f) = float(a)/b
print '%d, %d, %f', d, r, f |
s768792989 | p02399 | u563876281 | 1453818220 | Python | Python | py | Runtime Error | 0 | 0 | 91 | a,b=map(int, raw_input().split())
d=a/b
e=a%b
print ('%d %d %f' % (d,e,(float(a)/float(b))) |
s433103477 | p02399 | u563876281 | 1453818233 | Python | Python | py | Runtime Error | 0 | 0 | 89 | a,b=map(int, raw_input().split())
d=a/b
e=a%b
print ('%d %d %f' % (d,e,float(a)/float(b)) |
s496315455 | p02399 | u563876281 | 1453818315 | Python | Python | py | Runtime Error | 0 | 0 | 93 | a,b=map(int, raw_input().split())
c=a/b
d=a%b
e=float(a)/float(b)
print ('%d %d %f' % (c,d,e) |
s232509547 | p02399 | u682357930 | 1453861231 | Python | Python | py | Runtime Error | 0 | 0 | 82 | a = input()
b = input()
q = a/b
r = a%b
q_f = float(a)/float(b)
print q,, r, q_f |
s957544066 | p02399 | u682357930 | 1453861237 | Python | Python | py | Runtime Error | 0 | 0 | 82 | a = input()
b = input()
q = a/b
r = a%b
q_f = float(a)/float(b)
print q,, r, q_f |
s480020749 | p02399 | u682357930 | 1453861249 | Python | Python | py | Runtime Error | 0 | 0 | 80 | a = input()
b = input()
q = a/b
r = a%b
q_f = float(a)/float(b)
print q,r, q_f |
s609454423 | p02399 | u974554153 | 1454420519 | Python | Python | py | Runtime Error | 0 | 0 | 85 | a,b = map(double, raw_input().split())
int x,y
double z
x=a/b
y=a%b
z=a/b
print x y z |
s455237588 | p02399 | u852112234 | 1455781561 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | line = input()
i = []
for l in list:
i.append(int(l))
d = i[0] % i[1]
r = i[0] %% i[1]
f = i[0] % float(i[1])
print(d,r,f) |
s756290361 | p02399 | u852112234 | 1455783408 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | line = input()
i =[]
for l in line:
i.append(int(l))
d = i[0] / i[1]
r = i[0] % i[1]
f = i[0] / float(i[1])
print(d,r,f)
|
s673469854 | p02399 | u852112234 | 1455783519 | Python | Python3 | py | Runtime Error | 0 | 0 | 119 | line = input()
i =[]
for l in line:
i.append(int(l))
d = i[0] // i[1]
r = i[0] % i[1]
f = i[0] / i[1]
print(d,r,f)
|
s553737064 | p02399 | u653239976 | 1456805877 | Python | Python | py | Runtime Error | 0 | 0 | 130 | #coding: UTF-8
l = raw_input().split()
a = int (l[0])
b = int (l[1])
c = int (l[2])
if a < b < c:
print "Yes"
else:
print"No" |
s741622888 | p02399 | u653239976 | 1456805922 | Python | Python | py | Runtime Error | 0 | 0 | 131 | #coding: UTF-8
l = raw_input().split()
a = int (l[0])
b = int (l[1])
c = float(l[2])
if a < b < c:
print "Yes"
else:
print"No" |
s054454790 | p02399 | u653239976 | 1456806276 | Python | Python | py | Runtime Error | 0 | 0 | 163 | #coding: UTF-8
l = input().split()
a = int(l[0])
b = int(l[1])
if 1 <= a and b <= 10*9:
d = a / b
r = a % b
f = float (a )/ b
print "%d %d %f" %(d, r, f) |
s753467676 | p02399 | u994049982 | 1458664013 | Python | Python | py | Runtime Error | 0 | 0 | 63 | a,b=map(int,input().split())
print("%d, %d, %f"%(a//b,a%b,a/b)) |
s112655829 | p02399 | u869301406 | 1458810951 | Python | Python | py | Runtime Error | 0 | 0 | 93 | a,b = map(int,raw_input().split())
d=a/b
r=a%b
f=float(a)/float(b)
print "%d %d %f" % d,r,f |
s548947356 | p02399 | u130979865 | 1459555652 | Python | Python | py | Runtime Error | 0 | 0 | 102 | # -*- coding: utf-8 -*-
a, b = map(int, raw_input().split())
print "%d %d %f" %(a/b, a%b, (float)a/b) |
s005736017 | p02399 | u077284614 | 1461238095 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | a, b = map(int,input().split())
d = (int)a/b
r = a%b
f = (double)a/b
print(d, r, f)
|
s201525654 | p02399 | u077284614 | 1461238131 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | a, b = map(int,input().split())
d = a/b
r = a%b
f = (double)a/b
print(d, r, f)
|
s022372273 | p02399 | u077284614 | 1461238276 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | a, b = map(int,input().split())
d = (int)a/b
r = a%b
f = a/b
print("%d %d %f",d,r,f)
|
s618254329 | p02399 | u077284614 | 1461238305 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | a, b = map(int,input().split())
d = (int)a/b
r = a%b
f = a/b
print("%d %d %f"%(d,r,f))
|
s343052415 | p02399 | u077284614 | 1461238359 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | a, b = map(int,input().split())
d = (int)a/b
r = a%b
f = a/b
print("%d %d %f" %(d,r,f))
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.