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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s013841248 | p02399 | u077284614 | 1461238454 | 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))
|
s972646908 | p02399 | u077284614 | 1461238519 | 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("%s %s %f" %(d,r,f))
|
s946303962 | p02399 | u077284614 | 1461238528 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | a, b = map(int,input().split())
d = (int)a/b
r = a%b
f = a/b
print("%s %s %.5f" %(d,r,f))
|
s871953060 | p02399 | u077284614 | 1461238582 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | a, b = map(int,input().split())
d = (int)a/b
r = a%b
f = a/b
print("%d %d %.5f" %(d,r,f))
|
s321581195 | p02399 | u617990214 | 1461847046 | Python | Python | py | Runtime Error | 0 | 0 | 246 | l=raw_input()
k=l.split()
a=0.0
b=0.0
a=int(k[0])
b=int(k[1])
#
print int((a-(a%b))/b),
print int(a%b),
a*=1.0
b*=1.0
if b==1:
print a*1.0
else:
if a/b>0.0000002:
print a/b
else: print 0.00000001.99999982 |
s297894630 | p02399 | u070968430 | 1464672665 | Python | Python3 | py | Runtime Error | 0 | 0 | 200 | a, b = map(int, input().split())
if a < 0 or b < 0:
break
elif a > 10 **9 or b > 10 **9:
break
else:
d = int(a/b)
r = int(a%b)
f = float(a/b)
print(d, r, "{0:01.5f}".format(f)) |
s522734234 | p02399 | u070968430 | 1464672954 | Python | Python3 | py | Runtime Error | 0 | 0 | 254 | while True:
a, b = map(int, input().split())
if a <= 0 or b <= 0:
break
elif a > 10 **9 or b > 10 **9:
break
else:
d = int(a/b)
r = int(a%b)
f = float(a/b)
print(d, r, "{0:01.5f}".format(f)) |
s239833983 | p02399 | u756468156 | 1466497238 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | a, b = map(int,input().split())
print(a / / b, a % b, float(a / b)) |
s447846219 | p02399 | u756468156 | 1466497325 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | a, b = map(int,input().split())
print(a / / b, a % b, float(a / b)) |
s356033453 | p02399 | u514853553 | 1467034487 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | r=float(input())
string=str(r**2*3.141592)+" "+str(2*3.141592*r)
print(string) |
s292412273 | p02399 | u204883389 | 1469598755 | Python | Python3 | py | Runtime Error | 0 | 0 | 148 | def main():
(a, b) = [int(i) for i in input().split()]
print "%d %d %f" %(a / b, a % b, a / float(b))
if __name__ == '__main__':
main() |
s990115737 | p02399 | u757827098 | 1469599322 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | a,b =[int(i) for i in input().split()]
d = a / b
r = a % b
f = a // b
print(d r f) |
s911920432 | p02399 | u369313788 | 1469599732 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | a, b = [int(i) for i in input().split()]
d = a // b
r = a % b
f = a / b
print("{0} {1} {2:.5f}".format(d.r.f)) |
s951334734 | p02399 | u628732336 | 1469599745 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | a, b = [int(i) for i in input().split()]
d = a // b
r = a % b
f = a / b
print("{0} {1} {2:.5f}".format(d, r, f) |
s219330972 | p02399 | u600195957 | 1469599827 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | a, b, c = [int(i) for i in input().split()]
d = a // b
r = a % b
f = a / b
print("{0} {1} {2:.5f}".format(d, r, f)) |
s766204830 | p02399 | u644636020 | 1469599884 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | a, b = [int(i) for i in input().split()]
d = a // b
r = a % b
f = a / b
print("{0} {1} {2:.5f}.format(d, r, f)) |
s125272004 | p02399 | u382316013 | 1469599894 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | a, b = [int(i) for i in input().split()]
d = a // b
r = a % b
r = a / b
print("{0} {1} {2:.5f}".format(d, r, f)) |
s357765314 | p02399 | u587193722 | 1469601444 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | a, b = [int(i) for in input().split()]
print(a//b,int(a%b),float(a%b)) |
s001144581 | p02399 | u315554638 | 1474289288 | Python | Python | py | Runtime Error | 0 | 0 | 112 | # -*- coding: utf-8 -*-
a = input()
b = input()
d = a / b; r = a % b; f = a / b;
print int(d), int(r), float(f) |
s880586747 | p02399 | u315554638 | 1474289399 | Python | Python | py | Runtime Error | 0 | 0 | 103 | a = input()
b = input()
d = a / b; r = a % b; f = a / b;
print '%d %d %.5f' %(int(d), int(r), float(f)) |
s596521809 | p02399 | u315554638 | 1474289487 | Python | Python | py | Runtime Error | 0 | 0 | 90 | a = input()
b = input()
d = a / b
r = a % b
print '%d %d %.5f' %(int(d), int(r), float(f)) |
s772960923 | p02399 | u315554638 | 1474289506 | Python | Python | py | Runtime Error | 0 | 0 | 80 | a = input()
b = input()
d = a / b
r = a % b
print '%d %d %.5f' %(d, r, float(f)) |
s121326493 | p02399 | u315554638 | 1474289817 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | a = input()
b = input()
d = a / b
r = a % b
print '%d %d %.5f' %(int(d), int(r), float(f)) |
s621596331 | p02399 | u672487238 | 1475854971 | Python | Python | py | Runtime Error | 0 | 0 | 112 | list = map(int, raw_input().split())
print list[0] / list[1], list[0] % list[1], "&.5f" %(1.0*list[0] / list[1]) |
s389484293 | p02399 | u175111751 | 1477477056 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | a,b = [int(e) for e in input().split()]
print('{0} {1} {:f}'.format(a//b, a%b, a/b)) |
s528218942 | p02399 | u831244171 | 1477492446 | Python | Python | py | Runtime Error | 0 | 0 | 116 | m = map(int,raw_input().split())
a = m[0]
b = m[1]
d = a / b
r = a % b
f = l.0 * a / b
print int(d),int(r),long(f) |
s178745300 | p02399 | u831244171 | 1477492456 | Python | Python | py | Runtime Error | 0 | 0 | 116 | m = map(int,raw_input().split())
a = m[0]
b = m[1]
d = a / b
r = a % b
f = l.0 * a / b
print int(d),int(r),long(f) |
s658532447 | p02399 | u831244171 | 1477492468 | Python | Python | py | Runtime Error | 0 | 0 | 117 | m = map(int,raw_input().split())
a = m[0]
b = m[1]
d = a / b
r = a % b
f = l.0 * a / b
print int(d),int(r),float(f) |
s294668470 | p02399 | u508732591 | 1478247249 | Python | Python3 | py | Runtime Error | 0 | 0 | 143 | a,b = map(int,input().split())
2 print("{0} {1} {2:0f}".format(a//b,a%b,a/b)) |
s254401685 | p02399 | u186082958 | 1480501265 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | a,b=map(int,input(),split())
print(a//b,a%b,a/b) |
s475786498 | p02399 | u250482563 | 1480566539 | Python | Python | py | Runtime Error | 0 | 0 | 80 | a, b = map (int, input().split())
d = a // b
r = a % b
f = a / b
print (d, r, f) |
s774424035 | p02399 | u234837959 | 1482330738 | Python | Python3 | py | Runtime Error | 0 | 0 | 226 | list1 = input().split(' ')
list1 = list(map(int, list1))
a = list1[0]
b = list1[1]
ans1 = a // b
ans1 = str(ans1)
ans2 = a % b
ans2 = str(ans2)
ans3 = a / b
ans3 = str(ans3)
print("{0} {1} {2:.5f}".format(ans1, ans2, ans3)) |
s088186782 | p02399 | u019678978 | 1483459399 | Python | Python3 | py | Runtime Error | 0 | 0 | 127 | a,b = list(map(int,input().split()))
d = int(a / b)
r = int(a % b)
f = float(a / b)
print("{0:d} {1:d} {2:d}".format( d, r, f)) |
s386323686 | p02399 | u276050131 | 1484816869 | Python | Python3 | py | Runtime Error | 0 | 0 | 141 | a,b = input().split()
a = int(a)
b = int(b)
d = a // b
r = a % b
f = a / b
fmt = "{v} {c} {n}"
s = fmt.
format(v = d,c = r,n = f)
print(s) |
s949980923 | p02399 | u276050131 | 1484817069 | Python | Python3 | py | Runtime Error | 0 | 0 | 141 | a,b = input().split()
a = int(a)
b = int(b)
d = a // b
r = a % b
f = a / b
fmt = "{v} {c} {n}"
s = fmt.
format(v = d,c = r,n = f)
print(s) |
s802281362 | p02399 | u519227872 | 1485276351 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | a,b = map(int,raw_input().split(" "))
f = a / b
d,r = divmod(a,b)
print ("%s %s %s" %(d,r,f)) |
s249292593 | p02399 | u519227872 | 1485276508 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | a,b = map(int,raw_input().split(" "))
d = a / b
r = a % b
f = a * 1.0 / b
print "%s %s %s" %(d,r,f) |
s210118267 | p02399 | u519227872 | 1485276698 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | a,b = map(int,raw_input().split(" "))
f = a / b
d,r = divmod(a,b)
print ("%s %s %s" %(d,r,f)) |
s499214823 | p02399 | u519227872 | 1485278762 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | a,b = map(int,raw_input().split(" "))
d,r = divmod(a,b)
f = a/b
print ("%s %s %s"%(d,r,f)) |
s031101148 | p02399 | u548155360 | 1487151458 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | a, b = map(int,input().split())
d = a // b
r = a % b
f = float(a) / float(b)
print("{} {} {0:f}".format(d,r,f)) |
s896313977 | p02399 | u553058997 | 1487755787 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | a,b,c = list(map(int, input().split()))
print(int(a/b), a % b, a / b) |
s026570895 | p02399 | u024715419 | 1488165410 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | a,b = map(int,input().split()))
print("%d %d %.5f\n" %(a//b,a%b,a/b)) |
s441468085 | p02399 | u024715419 | 1488165439 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | a,b = map(int,input().split()))
print("%d %d %.5f\n"%(a//b,a%b,a/b)) |
s883818198 | p02399 | u024715419 | 1488165448 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | a,b = map(int,input().split()))
print('%d %d %.5f\n'%(a//b,a%b,a/b)) |
s710236493 | p02399 | u921541953 | 1489211066 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | a, b = map(int, input().split())
d = a // b
r = a % b
f = a / b
print('{0} {1} [2:0.05f}').format(d, r, f) |
s611641174 | p02399 | u921541953 | 1489211103 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | a, b = map(int, input().split())
d = a // b
r = a % b
f = a / b
print('{0} {1} [2:0.5f}').format(d, r, f) |
s133551617 | p02399 | u921541953 | 1489211168 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | a, b = map(int, input().split())
d = a // b
r = a % b
f = a / b
print('{0} {1} [2:0.5f}'.format(d, r, f)) |
s081601722 | p02399 | u921541953 | 1489211209 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | a, b = map(int, input().split())
d = a // b
r = a % b
f = float(a / b)
print('{0} {1} [2:0.5f}'.format(d, r, f)) |
s521218643 | p02399 | u756958775 | 1490018389 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | [a, b] = list(map(int, input().split()))
print(a//b)
print(a%b)
print({:.5f}.format(a/b)) |
s401361906 | p02399 | u462831976 | 1490780314 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | a, b = list(map(int, input().split())
d = a // b
r = a % b
f = a / b
print(d, r, f |
s100736909 | p02399 | u462831976 | 1490780324 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | a, b = list(map(int, input().split())
d = a // b
r = a % b
f = a / b
print(d, r, f) |
s936361648 | p02399 | u606989659 | 1491302884 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | a,b = map(int,input().split())
d = a / b
r = a % b
f = float(a) / b
print({},{},{}.format(d,r,f)) |
s134184989 | p02399 | u489071923 | 1492940059 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | import math
nums = list(map(int , input().split())
a = nums[0]
b = nums[1]
print(a // b)
print(a % b)
print(float(a / b)) |
s486406729 | p02399 | u213265973 | 1494249783 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | a, b = [int(i) in input().split(" ")]
print(int(a/b), a%b, a/b, sep = " ") |
s611522942 | p02399 | u213265973 | 1494249833 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | a, b = [int(i) in input().split(" ")]
print(int(a/b), a%b, float(a/b), sep = " ") |
s457079634 | p02399 | u213265973 | 1494250173 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | a, b = [int(i) in input().split(" ")]
c = "{0:.f8}".format(a/b)
print(int(a/b), a%b, c, sep = " ") |
s598887832 | p02399 | u213265973 | 1494250208 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | a, b = [int(i) in input().split(" ")]
c = "{0:.f6}".format(a/b)
print(int(a/b), a%b, c, sep = " ") |
s040772292 | p02399 | u213265973 | 1494250284 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | a, b = [int(i) in input().split(" ")]
c = a/b
print(int(a/b), a%b, "{0:.6f}.format(c), sep = " ") |
s703751652 | p02399 | u213265973 | 1494250411 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | a, b = [int(i) in input().split(" ")]
c = a/b
print(int(a/b), a%b, "{0:.5f}.format(c), sep = " ") |
s070058542 | p02399 | u213265973 | 1494250421 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | a, b = [int(i) in input().split(" ")]
c = a/b
print(int(a/b), a%b, "{0:.5f}".format(c), sep = " ") |
s738633381 | p02399 | u213265973 | 1494250450 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | a, b = [int(i) in input().split(" ")]
c = a/b
print(int(a/b), a%b, "{0:.6f}".format(c), sep = " ") |
s076491280 | p02399 | u213265973 | 1494250458 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | a, b = [int(i) in input().split(" ")]
c = a/b
print(int(a/b), a%b, "{0:.5f}".format(c), sep = " ") |
s453616104 | p02399 | u213265973 | 1494250628 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | a, b = [int(i) in input().split(" ")]
c = a / b
print(int(a/b), a%b, "{0:.5f}".format(c)) |
s246973267 | p02399 | u213265973 | 1494252229 | Python | Python | py | Runtime Error | 0 | 0 | 120 | a, b = [int(i) for i in input().split(" ")]
num1 = int(a / b)
num2 = a % b
num3 = "{:.5f}".format(a / b)
print(a, b, c) |
s941601271 | p02399 | u213265973 | 1494252297 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | a, b = [int(i) for i in input().split(" ")]
num1 = int(a / b)
num2 = a % b
num3 = "{:.5f}".format(a / b)
print(a, b, c) |
s089741454 | p02399 | u625806423 | 1495810637 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | a,b = map(int,input().split())
d = a // b
r = a % b
f = a / b
print('{} {} {.5f}'.format(d,r,f)) |
s175114747 | p02399 | u999594662 | 1496226137 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | a,b=map(int, input().split())
d = a/b
r = a%b
f = a/b
print(???{0} {1} {2:f}???.format(d, r, f)) |
s151259986 | p02399 | u999594662 | 1496226368 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | a, b = map(int, input().split())
d = a // b
r = a % b
f = a / b
print(???{0:d} {1:d} {2:f}???.format(d, r, f)) |
s155794429 | p02399 | u440180827 | 1496886474 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | a, b = map(int, input().split())
print('{0} {1} {:.5f}'.format(a//b, a%b, a/b)) |
s728925422 | p02399 | u821624310 | 1497304171 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | a, b = map(int, input().split())
f = a / b
print(int(a / b), a % b, f"{a / b : .5f}") |
s456906266 | p02399 | u821624310 | 1497304429 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | a, b = map(int, input().split())
f = a / b
print(int(a / b), a % b, f"{a / b : .5f}") |
s976091006 | p02399 | u248424983 | 1499921079 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | (a, b) = [int(i) for i in input().split(' ')]
print( repr(a // b) +" "+ repr(a % b) +" "+ ('%0.5f' % (a / b)) |
s745816767 | p02399 | u663910047 | 1500126588 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a,b,c = map(int, input().split())
print(int(a/b),a%b,a/b) |
s850247533 | p02399 | u914146430 | 1500270936 | Python | Python3 | py | Runtime Error | 0 | 0 | 37 | print(a//b,a%b,"{0:.5f}".format(a/b)) |
s820881853 | p02399 | u853619096 | 1500310287 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | a,b=map(int,input().split())
d=a%b
r=a%b-d
f=flort(r)
print("{} {} {}".format()) |
s963677103 | p02399 | u853619096 | 1500310361 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | a,b=map(int,input().split())
d=a//b
r=a%b
f=float(a/b)
print("{} {} {}".format()) |
s629356536 | p02399 | u853619096 | 1500310671 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | a,b=map(int,input().split())
d=a//b
r=a%b
f=float(a/b)
print(f"{d r f}") |
s236908536 | p02399 | u853619096 | 1500311721 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | a,b=map(int,input().split())
d=a//b
r=a%b
f=float(a/b)
print(f"{d r f: f5}") |
s795583432 | p02399 | u350064373 | 1500469761 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | a, b = map(int, input().split())
d = a // b
r = a % b
f = a / b
print(d,r,{0:.5f}.format) |
s288010113 | p02399 | u350064373 | 1500470067 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | a, b = map(int, input().split())
d = a // b
r = a % b
f = a / b
print(d,r,"{0:.5f}".format)(f) |
s761572501 | p02399 | u050103511 | 1500512373 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | a,b = [int(x) for x in input().split()]
d = a // b
r = a % b
f = a / b
print("{0} {1} {2}".format(d,r,f) |
s110518725 | p02399 | u050103511 | 1500512384 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | a,b = [int(x) for x in input().split()]
d = a // b
r = a % b
f = a / b
print("{0} {1} {2}".format(d,r,f)} |
s082802480 | p02399 | u447009770 | 1500522794 | Python | Python | py | Runtime Error | 0 | 0 | 87 | ### 20.07.2017
x = []
a, b = map(int, input().split())
print(int(a/b), a%b, float(a/b)) |
s078524574 | p02399 | u043639882 | 1500591214 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | a,b=map(int,input().split())
d=int(a/b)
r=a%b
f=a/b
print(d,r,f,sep(" ")) |
s228958569 | p02399 | u043639882 | 1500591299 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | a,b=map(int,input().split())
d=int(a/b)
r=int(a%b)
f=a/b
print(d,r,f,sep(" ")) |
s998234457 | p02399 | u043639882 | 1500591534 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | a,b=map(int,input().split())
d=a//b
r=int(a%b)
f=a/b
print(d,r,f,sep(" ")) |
s227287021 | p02399 | u888737393 | 1500699289 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | a, b = list(map(int, input().split))
d = int(a/b)
r = a%b
f = a/b
print(d, r, f) |
s667931784 | p02399 | u725841747 | 1502034871 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | i=list(map(int,input().split(" ")))
print("{0} {1} {2:0.5f}".format(i[0]//i[1],i[0]%i[1],float(i[0])/float(i[1])) |
s914822475 | p02399 | u618743706 | 1502083975 | Python | Python3 | py | Runtime Error | 0 | 0 | 257 | import math
def f(a,b):
if a>=1 and b<=10**9:
d = math.floor(a/b)
r = a%b
f = float(a/b)
print(d,r,"{0:.5f}".format(f))
else:
print("error")
a = int(input("enter the first number"))
b = int(input("enter the second number"))
f(a,b) |
s781508502 | p02399 | u744121389 | 1502422560 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | a,b= map(int,input().split())
r = a % b
F = a / b
f = round(F,5)
d = f - r
print str(d,r,f) |
s951406529 | p02399 | u744121389 | 1502423089 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | a,b= map(int,input().split())
r = a % b
F = a / b
f = "{0:.5f}".format F
d = F - r
print (d,r,f) |
s045130312 | p02399 | u744121389 | 1502423151 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | a,b= map(int,input().split())
r = a % b
F = a / b
f = "{0:.5f}".formatF
d = F - r
print (d,r,f) |
s989436336 | p02399 | u283452598 | 1503042949 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | x=list(map(int,input().split()))
a,b,c=x[0],x[1],x[2]
print(str(a//b)+" "+str(a%b)+" "+str(a/b)) |
s945262446 | p02399 | u283452598 | 1503043136 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | x=list(map(int,input().split()))
a,b= x[0],x[1]
print(str(a//b)+" "+str(a%b)+" {0:.6f}.format(a/b)" |
s070396192 | p02399 | u283452598 | 1503043271 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | x=list(map(int,input().split()))
a,b= x[0],x[1]
print(str(a//b)+" "+str(a%b)+" {0:06f}.format(a/b)" |
s623127927 | p02399 | u316697096 | 1503149104 | Python | Python | py | Runtime Error | 0 | 0 | 82 | a,b= map(int,raw_input().split())
d=a/b
r=a%b
f=float(a/b)
print %d,%d,%d,%(d,r,f) |
s252145966 | p02399 | u316697096 | 1503149304 | Python | Python | py | Runtime Error | 0 | 0 | 82 | a,b= map(int,raw_input().split())
d=a/b
r=a%b
f=float(a/b)
print %d,%d,%f,%(d,r,f) |
s794685329 | p02399 | u544943822 | 1503748817 | Python | Python | py | Runtime Error | 0 | 0 | 79 | a, b = map(int. raw_input().split())
f = a/b
print(a/b a%b {:.5f}.format(f))
|
s660842711 | p02399 | u544943822 | 1503748958 | Python | Python | py | Runtime Error | 0 | 0 | 94 | while True:
a, b = map(int. raw_input().split())
f = a/b
print(a/b a%b {:.5f}.format(f)) |
s556746312 | p02399 | u544943822 | 1503749060 | Python | Python | py | Runtime Error | 0 | 0 | 95 | a, b = map(int, input().split())
d = a // b
r = a % b
f = a / b
print(d, r, "{:.5f}".format(f)) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.