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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s003658276 | p02398 | u544943822 | 1503644075 | Python | Python | py | Runtime Error | 0 | 0 | 133 | a,b,c = map(int, raw_input().split)
count=0
for x in range(a,b+1):
if c%x == 0:
count += 1
print ('count')
|
s549360780 | p02398 | u544943822 | 1503644131 | Python | Python | py | Runtime Error | 0 | 0 | 129 | a,b,c = map(int, raw_input().split)
count=0
for x in range(a,b+1):
if c%x == 0:
count += 1
print('count')
|
s449927687 | p02398 | u544943822 | 1503644181 | Python | Python | py | Runtime Error | 0 | 0 | 129 | a,b,c = map(int, raw_input().split)
count=0
for x in range(a,b+1):
if c%x == 0:
count += 1
print(count)
|
s446907685 | p02398 | u544943822 | 1503644260 | Python | Python | py | Runtime Error | 0 | 0 | 137 | a,b,c = map(int, raw_input().split)
count=0
for x in range(a,b+1):
if c%x == 0:
count += 1
print(str(count))
|
s991816062 | p02398 | u544943822 | 1503644371 | Python | Python | py | Runtime Error | 0 | 0 | 129 | a,b,c = map(int, raw_input().split)
count=0
for x in range(a,b+1):
if c%x == 0:
count += 1
print(count)
|
s573006141 | p02398 | u933096856 | 1504906707 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | a,b=map(int, input().split())
print(a//b, a%b, "{0:.20f}".format(a/b)) |
s671690367 | p02398 | u933096856 | 1504906729 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | a,b=map(int, input().split())
print(a//b, a%b, "{0:.8f}".format(a/b)) |
s263311200 | p02398 | u362494298 | 1505183322 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | a,b,c = map(input().split())
y=0
if c%x==0 for x in(a,b+1) :
y+=1
print(y) |
s871897539 | p02398 | u362494298 | 1505183468 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | a,b,c = map(input().split())
y=0
for x in(a,b+1):
if c%x==0:
y+=1
print(y) |
s381628891 | p02398 | u362494298 | 1505183582 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a,b,c = map(input().split())
print(sum([c%x==0 for x in(a,b+1)]) |
s661654659 | p02398 | u362494298 | 1505183888 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | a,b,c = map(input().split())
d=0
for x in range(a,b+1):
if c%x==0:d+=1
print(d) |
s311265436 | p02398 | u362494298 | 1505184050 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | a,b,c = map(input().split())
d=0
x=0
for x in range(a,b+1):
if c%x==0:d+=1
print(d) |
s525453894 | p02398 | u186282999 | 1505956703 | Python | Python3 | py | Runtime Error | 0 | 0 | 202 | my_value = input()
my_value_list = ([int(x) for x in my_value.split()])
count = 0
for i in range(my_value_list[0], my_value_list[1]+1):
if my_value_list[] % i == 0:
count += 1
print(count) |
s262745216 | p02398 | u664228906 | 1506326697 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | a,b,c = map(int, input().split())
cnt = 0
for i in range(a,b)
if c%i != 0 :
else : cnt += 1
print(cnt)
|
s143368284 | p02398 | u664228906 | 1506326728 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | a,b,c = map(int, input().split())
cnt = 0
for i in range(a,b)
if c%i == 0 : cnt += 1
print(cnt)
|
s631959964 | p02398 | u664228906 | 1506326771 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | a,b,c = map(int, input().split())
cnt = 0
for i in range(a,b+1)
if c%i == 0 : cnt += 1
print(cnt)
|
s252801043 | p02398 | u664228906 | 1506326883 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | a,b,c = map(int, input().split())
cnt = 0
for i in range(a,b+1)
if c%i == 0 : cnt += 1
print(cnt)
|
s825360354 | p02398 | u664228906 | 1506326899 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | a,b,c = map(int, input().split(" "))
cnt = 0
for i in range(a,b+1)
if c%i == 0 : cnt += 1
print(cnt)
|
s471900863 | p02398 | u197670577 | 1508060772 | Python | Python | py | Runtime Error | 0 | 0 | 117 | a, b, c = [int(i) for i in raw_input()]
num = 0
for i in range(a,b+1):
if c % i == 0:
num += 1
print num |
s713598990 | p02398 | u102664642 | 1509809947 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | n = 0
a,b,c = list(map(int,input().split()))
for i in range(a,b):
if true:
continue
x = c % i
if x == 0:
n += 1
print(n) |
s426258959 | p02398 | u706217959 | 1512881294 | Python | Python3 | py | Runtime Error | 0 | 0 | 328 | def main():
data = []
while 1:
n = input().split()
a = int(n[0])
b = int(n[1])
c = int(n[2])
div = 0
for i in range(a,b):
if c % i == 0:
div += 1
else:
pass
print(div)
if __name__ == '__main__':
... |
s544895227 | p02398 | u706217959 | 1512881312 | Python | Python3 | py | Runtime Error | 0 | 0 | 328 | def main():
data = []
while 1:
n = input().split()
a = int(n[0])
b = int(n[1])
c = int(n[2])
div = 0
for i in range(a,b):
if c % i == 0:
div += 1
else:
pass
print(div)
if __name__ == '__main__':
... |
s875775210 | p02398 | u706217959 | 1512881342 | Python | Python3 | py | Runtime Error | 0 | 0 | 289 | def main():
data = []
while 1:
n = input().split()
a = int(n[0])
b = int(n[1])
c = int(n[2])
div = 0
for i in range(a,b):
if c % i == 0:
div += 1
print(div)
if __name__ == '__main__':
main() |
s746535008 | p02398 | u150984829 | 1513064675 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | a,b,c=map(int,input().split())
n=0
for i in range(a,b+1):if c%i==0:n+=1
print(n) |
s479266397 | p02398 | u150984829 | 1513064916 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | a,b,c=map(int,input().split())
n=0
for i in range(a,b+1):if c%i==0:n+=1
print(n) |
s979970290 | p02398 | u987701388 | 1515488829 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | a,b,c=[int(x) for x in input().split()]
count=0
for d in xrange(a,b+1):
if c%d==0: count+=1
print(count)
|
s958365944 | p02398 | u987701388 | 1515488907 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | a,b,c=[int(x) for x in input().split()]
count=0
for d in xrange(a,b+1):
if c%d==0: count+=1
print(count)
|
s941136049 | p02398 | u987701388 | 1515489164 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | a,b,c=[int(x) for x in input().split()]
count=0
for d in xrange(a,b+1):
if c%d==0: count+=1
print(count)
|
s776334547 | p02398 | u179070318 | 1515991487 | Python | Python | py | Runtime Error | 0 | 0 | 261 | a,b,c = [int(x) for x in input().split( )]
div = []
for x in range(1,c+1):
if c % x == 0:
div.append(x)
r = []
for x in range(a,b+1):
r.append(x)
answer = 0
for x in div:
for y in r:
if x == y:
answer += 1
print(answer)
|
s305753113 | p02398 | u299257375 | 1516080302 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | a, b, c = map(int, input().split())
for i in range(a, b+1):
if c % i == 0:
count += 1
print(count)
|
s341256660 | p02398 | u299257375 | 1516080346 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | a, b, c = map(int, input().split())
for i in range(a, b+1):
if c % i == 0: count += 1
print(count)
|
s748051364 | p02398 | u299257375 | 1516080592 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | a, b, c = map(int, input().split())
while a != b+1:
if c % i == 0:
count += 1
a += 1
print(count)
|
s756346345 | p02398 | u780025254 | 1517809264 | Python | Python3 | py | Runtime Error | 0 | 0 | 256 | import sympy as sym
a, b, c = map(int, input().split())
c_divisors_list = sym.divisors(c)
result = []
for c_divisor in c_divisors_list:
if c_divisor < a or c_divisor > b:
pass
else:
result.append(c_divisor)
print(len(result))
|
s451194589 | p02398 | u796301295 | 1517967037 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | a, b, c = map(int, input().split())
j = 0
while i in range(a, b + 1)
if c % i == 0:
j += 1
print (j)
|
s530210614 | p02398 | u613534067 | 1520156221 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | a, b, c = map(int, input().split())
cnt = 0
for i in range(a, b+1):
if(!(c % i)):
cnt += 1
print(cnt)
|
s820924857 | p02398 | u621084859 | 1522394287 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | n=input().split()
a=int(n[0])
b=int(n[1])
c=int(n[2])
count=0
while i <=a+b:
if c/i==0:
count=i+1
print(count)
|
s085300582 | p02398 | u621084859 | 1522394311 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | n=input().split(" ")
a=int(n[0])
b=int(n[1])
c=int(n[2])
count=0
while i <=a+b:
if c/i==0:
count=i+1
print(count)
|
s634201447 | p02398 | u621084859 | 1522394427 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | n=input().split(" ")
a=int(n[0])
b=int(n[1])
c=int(n[2])
count=0
for i in range(a+b+1):
if c/i==0:
count=i+1
print(count)
|
s637011318 | p02398 | u621084859 | 1522394497 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | n=input().split(" ")
a=int(n[0])
b=int(n[1])
c=int(n[2])
count=0
for i in range(a+b+1):
if c%i==0:
count=i+1
print(count)
|
s879077575 | p02398 | u621084859 | 1522394776 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | n=input().split(" ")
a=int(n[0])
b=int(n[1])
c=int(n[2])
count=0
for i in range(a+b+1):
if c%i==0:
count=i+1
print(count)
|
s962912389 | p02398 | u621084859 | 1522394888 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | n=input().split(" ")
a=int(n[0])
b=int(n[1])
c=int(n[2])
count=0
for i in range(n+1):
count=i+1
print(count)
|
s576655111 | p02398 | u621084859 | 1522401466 | Python | Python3 | py | Runtime Error | 0 | 0 | 149 | x = input().split(" ")
a = int(x[0])
b = int(x[1])
c = int(x[2])
count = 0
for i in range(a,b+1):
if c % i == 0:
count += 1
Print(count)
|
s868338406 | p02398 | u405987720 | 1522856097 | Python | Python | py | Runtime Error | 0 | 0 | 172 | temp = raw_input()
temp_list = temp.split()
a = temp_list[0]
b = temp_list[1]
c = temp_list[2]
count = 0
for i in range(a,b):
if c//i == 0:
count += 1
print(count)
|
s316063712 | p02398 | u405987720 | 1522856126 | Python | Python | py | Runtime Error | 0 | 0 | 171 | temp = raw_input()
temp_list = temp.split()
a = temp_list[0]
b = temp_list[1]
c = temp_list[2]
count = 0
for i in range(a,b):
if c/i == 0:
count += 1
print(count)
|
s410736029 | p02398 | u405987720 | 1522856204 | Python | Python | py | Runtime Error | 0 | 0 | 171 | temp = raw_input()
temp_list = temp.split()
a = temp_list[0]
b = temp_list[1]
c = temp_list[2]
count = 0
for i in range(a,b):
if c/i == 0:
count += 1
print(count)
|
s577192220 | p02398 | u405987720 | 1522856430 | Python | Python | py | Runtime Error | 0 | 0 | 173 | temp = raw_input()
temp_list = temp.split()
a = temp_list[0]
b = temp_list[1]
c = temp_list[2]
count = 0
for i in range(a,b):
if c/i == 0:
count += 1
print(count)
|
s888730709 | p02398 | u405987720 | 1522856565 | Python | Python | py | Runtime Error | 0 | 0 | 175 | temp = raw_input()
temp_list = temp.split()
a = temp_list[0]
b = temp_list[1]
c = temp_list[2]
count = 0
for i in range(a,b+1):
if c/i == 0:
count += 1
print(count)
|
s327569130 | p02398 | u244493040 | 1523635347 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | i,a,b,c = 0,map(int,input().split())
for x in range(a+1,b)
if c % x == 0: i+=1
print(i)
|
s516604389 | p02398 | u244493040 | 1523635370 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | i=0
a,b,c = map(int,input().split())
for x in range(a+1,b)
if c % x == 0: i+=1
print(i)
|
s401452264 | p02398 | u074747865 | 1524126501 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | a,b,c=map(int,input().split())
n=0
for i in range(a:b+1)
if c%i==0:
n +=1
else:
n=n
print(n)
|
s755341414 | p02398 | u074747865 | 1524126591 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | a,b,c=map(int,input().split())
n=0
for i in range(a,b+1)
if c%i==0:
n +=1
else:
n=n
print(n)
|
s002707791 | p02398 | u589139267 | 1524182821 | Python | Python3 | py | Runtime Error | 0 | 0 | 156 | a = int(input())
b = int(input())
c = int(input())
count = 0
n = 0
while b-a==0:
if c%(b-(a+n)==0
count += 1
n += 1
else:
n += 1
|
s204209085 | p02398 | u328199937 | 1524193419 | Python | Python3 | py | Runtime Error | 0 | 0 | 8 | 5 14 80
|
s603119703 | p02398 | u485986915 | 1524459276 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | a,b,c = input()
n = 0
for a in range(b):
if c%a == 0 :
n=n+1
print(n)
|
s601597641 | p02398 | u485986915 | 1524459442 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | a,b,c = input()
n = 0
for i in range(a,b+1):
if c%i == 0 :
n = n+1
print(n)
|
s149513113 | p02398 | u589139267 | 1524477331 | Python | Python3 | py | Runtime Error | 0 | 0 | 118 | a, b, c = map(int, input().split())
count = 1
for i in range(a, b+1):
if c%i = 0:
count += 1
print(count)
|
s225836910 | p02398 | u729486845 | 1524664037 | Python | Python3 | py | Runtime Error | 0 | 0 | 191 | a,b,c = map(int, input().split())
cnt = 0
i = 0
while i < b :
if a > i :
else
if (c%i) == 0 :
cnt += 1
i += 1
print(cnt)
|
s367625116 | p02398 | u781194524 | 1524815439 | Python | Python3 | py | Runtime Error | 0 | 0 | 127 | a,b,c=[int(x) for x in input().split()]
x = b
count = 0
while True:
if x == a: break
elif x%c == 0 : count +=
b -=
|
s027924364 | p02398 | u781194524 | 1524815526 | Python | Python3 | py | Runtime Error | 0 | 0 | 136 | a,b,c=[int(x) for x in input().split()]
x = b
count = 0
while True:
if x == a: break
elif x%c == 0 : count +=
x -=
print(x)
|
s778712806 | p02398 | u781194524 | 1524815598 | Python | Python3 | py | Runtime Error | 0 | 0 | 136 | a,b,c=[int(x) for x in input().split()]
x = b
count = 0
while True:
if x == a: break
elif x%c == 0 : count +=,x -=
print(count)
|
s479627923 | p02398 | u781194524 | 1524815683 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | a,b,c=[int(x) for x in input().split()]
x = b
count = 0
for d in range(a,b+1)
elif x%c == 0 : count +=
print(count)
|
s863369042 | p02398 | u781194524 | 1524815722 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | a,b,c=[int(x) for x in input().split()]
x = b
count = 0
for d in range(a,b+1)
elif c%d == 0 : count +=
print(count)
|
s010264265 | p02398 | u781194524 | 1524815744 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | a,b,c=[int(x) for x in input().split()]
count = 0
for d in range(a,b+1)
elif c%d == 0 : count +=
print(count)
|
s695502922 | p02398 | u781194524 | 1524815761 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | a,b,c=[int(x) for x in input().split()]
count = 0
for d in range(a,b+1)
elif c%d == 0 : count += 1
print(count)
|
s376377769 | p02398 | u781194524 | 1524815772 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | a,b,c=[int(x) for x in input().split()]
count = 0
for d in range(a,b+1)
if c%d == 0 : count += 1
print(count)
|
s950518713 | p02398 | u781194524 | 1525146006 | Python | Python | py | Runtime Error | 0 | 0 | 110 | a,b,c=[int(x) for x in input().split()]
count= 0
for d in range(a,b+1):
if c%d ==0 : count += 1
print(count)
|
s227419479 | p02398 | u592529978 | 1525315109 | Python | Python | py | Runtime Error | 0 | 0 | 87 | a,b,c = map(int, raw(input().split)
print len[x for x in range(a,b+1) if c % x == 0])
|
s559820552 | p02398 | u592529978 | 1525315142 | Python | Python | py | Runtime Error | 0 | 0 | 85 | a,b,c = map(int, raw(input().split)
print len[x for x in range(a,b+1) if c % x == 0]
|
s440787170 | p02398 | u592529978 | 1525315191 | Python | Python | py | Runtime Error | 0 | 0 | 87 | (a,b,c) = map(int, raw(input().split)
print len[x for x in range(a,b+1) if c % x == 0]
|
s469616902 | p02398 | u592529978 | 1525315808 | Python | Python | py | Runtime Error | 0 | 0 | 87 | a,b,c = map(int, raw(input().split)
print len([x for x in range(a,b+1) if c % x == 0])
|
s576723150 | p02398 | u226008611 | 1525792148 | Python | Python3 | py | Runtime Error | 0 | 0 | 722 | use std::io;
use std::str::FromStr;
fn read_line() -> String {
let mut s = String::new();
io::stdin().read_line(&mut s).unwrap();
s
}
macro_rules! from_line {
($($a:ident : $t:ty),+) => {
$(let $a: $t;)+
{
let _line = read_line();
let mut _it = _line.trim().spli... |
s924192415 | p02398 | u500257793 | 1527583557 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | a,b,c=map(int,input().split())
g=0
while a<=b:
if c%i==0
g=g+1
a=a+1
print(g)
|
s624195569 | p02398 | u500257793 | 1527583585 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | a,b,c=map(int,input().split())
g=0
while a<=b:
if c%i==0:
g=g+1
a=a+1
print(g)
|
s597434480 | p02398 | u990900604 | 1527779901 | Python | Python | py | Runtime Error | 0 | 0 | 126 | import sys
if __name__ == '__main__':
a,b,c=map(int,sys.stdin.read().split())
print len(i for i in range(a,b+1) if c%i==0)
|
s414257633 | p02398 | u987236471 | 1530541461 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | a,b,c = map(int, input().split())
x = 0
for i in range(a,b+1)
if 80 %% i == 0:
x += x+1
print(x)
|
s732328924 | p02398 | u987236471 | 1530541474 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | a,b,c = map(int, input().split())
x = 0
for i in range(a,b+1)
if c %% i == 0:
x += x+1
print(x)
|
s586983026 | p02398 | u987236471 | 1530541508 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | a,b,c = map(int, input().split())
x = 0
for i in range(a,b+1):
if c %% i == 0:
x += x+1
print(x)
|
s574179037 | p02399 | u580227385 | 1535599515 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | a, b = map(int, input().split())
print("{} {} {}".format(a // b, a % b, (a / b))
|
s896300555 | p02399 | u281808376 | 1540291839 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | s=input().split()
a,b=int(s[0]),int(s[1])
print("{} {} {}".format(a//b,a%b,a/b)
|
s782622735 | p02399 | u803045841 | 1540901969 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | a,b = int(input().split(' '))
d = a // b
r = a % b
f = a / b
print(d,r,f, sep='\n' )
|
s303610219 | p02399 | u803045841 | 1540902536 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | a,b = int(input().split(' '))
d = a // b
r = a % b
f = a / b
print(d,r,f, sep='\n' )
|
s508213445 | p02399 | u596993252 | 1541059747 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | a,b=map(int,input().split())
c=a//b;
d=a%b
e=(double)a/b
print(f'{c} {d} {e}')
|
s783983955 | p02399 | u596993252 | 1541059881 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | a,b=map(int,input().split())
c=a//b;
d=a%b
e=(double)a/b
print(f"{c} {d} {e}")
|
s242807047 | p02399 | u596993252 | 1541059896 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | a,b=map(int,input().split())
c=a//b
d=a%b
e=(double)a/b
print(f"{c} {d} {e}")
|
s496591685 | p02399 | u921810101 | 1541060127 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | a,b = map(input().split())
print(a//b)
print(a%b)
print(a/b)
|
s895012309 | p02399 | u893058769 | 1541060289 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | x,y=map(int,input().split())
d=x//y
r=x%y
f=x/y
print(f"{d} {r} {.5f}")
|
s445164995 | p02399 | u861678859 | 1541060370 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | input = input()
a,b=(int,input.split())
print(a // b)
print(a % b)
print(flort(a / b))
|
s937593980 | p02399 | u596993252 | 1541060498 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | a,b=map(int,input().split())
ptint("{0} {1} {2:.8f}",format,(a//b,a%b,a/b))
|
s034020133 | p02399 | u596993252 | 1541060526 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | a,b=map(int,input().split())
ptint("{0} {1} {2:.8f}".format,(a//b,a%b,a/b))
|
s630492430 | p02399 | u861678859 | 1541060527 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | input = input()
a,b=(int,input.split())
print("{0} {1} {2:.8}".format{a // b, a % b, a / b))
|
s637527851 | p02399 | u596993252 | 1541060539 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | a,b=map(int,input().split())
ptint("{0} {1} {2:.8f}".format(a//b,a%b,a/b))
|
s043722432 | p02399 | u861678859 | 1541060547 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | a,b=(int,input().split())
print("{0} {1} {2:.8}".format{a // b, a % b, a / b))
|
s635688283 | p02399 | u861678859 | 1541060564 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | a,b=(int,input().split())
print("{0} {1} {2:.8f}".format{a // b, a % b, a / b))
|
s034197400 | p02399 | u861678859 | 1541060581 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | a,b=(int,input().split())
print("{0} {1} {2:.8f}".format(a // b, a % b, a / b))
|
s594118465 | p02399 | u962909487 | 1545837308 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | a,b = map(int,input().split())
print(a//b,a%b,"{:.5f}"(a/b))
|
s314953604 | p02399 | u643542669 | 1545872895 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | a, b = map(int, input().split())
print(a // b, a % b, {:.10f}.format(a / b))
|
s637123700 | p02399 | u316246166 | 1545906028 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | x, y = map(int, input().split())
print(int(x/y), x%y, double(x/y))
|
s243332953 | p02399 | u316246166 | 1545907033 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | a, b = float(input().split)
print(a//b, a%b, a/b)
|
s685480469 | p02399 | u316246166 | 1545907053 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | #a, b = input().split()
a, b = float(input().split())
print(a//b, a%b, a/b)
|
s486868229 | p02399 | u498462680 | 1546256459 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | a,b = [double(i) for i in input().split()]
d = int(a/b)
r = int(a) % int(b)
f = a/b
print(str(d) + " " + str(r) + " " + str(f))
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.