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
s265888306
p02399
u544943822
1503749180
Python
Python
py
Runtime Error
0
0
98
while True: a, b = map(int. raw_input().split()) f == a/b print(a/b a%b {:.5f}.format(f))
s899368052
p02399
u727538672
1504171095
Python
Python3
py
Runtime Error
0
0
81
a, b = map(int, input().split()) print(int(a / b), a % b, "{0:.5f}"format(a / b))
s159970046
p02399
u362494298
1505186303
Python
Python3
py
Runtime Error
0
0
60
a,b=map(int,input().split()) d=a//b r=a%b f=a/b print(d r f)
s806903190
p02399
u362494298
1505187661
Python
Python3
py
Runtime Error
0
0
68
a,b=map(int, input().split()) print(a//b, a%b, "{0:5f}"/format(a/b))
s465617858
p02399
u362494298
1505187724
Python
Python3
py
Runtime Error
0
0
69
a,b=map(int, input().split()) print(a//b, a%b, "{0:.5f}"/format(a/b))
s232456980
p02399
u506705885
1505414582
Python
Python3
py
Runtime Error
0
0
89
nums=[] nums=input('>>>').split() print(nums[0]//nums[1],nums[0]%nums[1],nums[0]/nums[1])
s423160891
p02399
u664228906
1506327270
Python
Python3
py
Runtime Error
0
0
96
a,b = map(int, input().split()) x = a//b y = a%b g = a/b print("{0} {1} {2:.5f}", format(x,y,g))
s873613458
p02399
u936401118
1506905763
Python
Python3
py
Runtime Error
0
0
123
a, b, c = map (int, input().split()) count = 0 for i in range(a, b+1): if c % i == 0: count += 1 print (count)
s484943797
p02399
u825994660
1508165260
Python
Python3
py
Runtime Error
0
0
105
z = input() a = list(map(int, z.split())) print("{} {} {}"format(a[0] // a[1], a[0] % a[1], a[0] / a[1]))
s406447048
p02399
u104114903
1509516751
Python
Python
py
Runtime Error
0
0
131
S = raw_input().split(' ') S[0] = int(S[0]) S[1] = int(S[1]) d = str(a//b) r = str(a%b) f = str(a/b) print(d + " " + r + " " + f)
s970218997
p02399
u104114903
1509517170
Python
Python
py
Runtime Error
0
0
169
S = raw_input().split(' ') S[0] = int(S[0]) S[1] = int(S[1]) d = str(S[0]/S[1]) r = str(S[0]%S[1]) f = str(1.0*S[0]/S[1]) print(d + " " + r + " " + format(f, '.7f'))
s192773559
p02399
u846136461
1509523611
Python
Python
py
Runtime Error
0
0
150
deglist = raw_input().split(" ") a = int(deglist[0]) b = int(deglist[1]) d = a / b r = a % b f = 1.0 * a / b print("{0} {1} {2.5f}".format(d, r, f))
s643483237
p02399
u899891332
1510470333
Python
Python3
py
Runtime Error
0
0
135
inp = input().split inp = [int(x) for x in inp] print(inp[0]/inp[1], end=' ') print(inp[0]%inp[1], end=' ') print(inp[0]/float(inp[1]))
s296140626
p02399
u921038488
1512636055
Python
Python3
py
Runtime Error
0
0
161
def getCal(a,b): return a//b, a%b, float((a*100000/b)/100000) a, b = map(int, input().split()) d, r, f = getCal(a,b) print("{} {} {2: 5f}".format(d, r, f))
s906019376
p02399
u921038488
1512636089
Python
Python3
py
Runtime Error
0
0
145
def getCal(a,b): return a//b, a%b, float(a/b) a, b = map(int, input().split()) d, r, f = getCal(a,b) print("{} {} {2: 5f}".format(d, r, f))
s778356733
p02399
u981238682
1513057307
Python
Python3
py
Runtime Error
0
0
102
mport sys a,b = map(int,sys.stdin.readline().split()) d = a % b r = a - b * d f = a / b print(d,r,f)
s965987025
p02399
u150984829
1513065544
Python
Python3
py
Runtime Error
0
0
67
a,b=map(int,input().split()) print(f'{a//b} {a%b} {.5:float(a/b)}')
s420878073
p02399
u150984829
1513065634
Python
Python3
py
Runtime Error
0
0
68
a,b=map(int,input().split()) print(f'{a//b} {a%b} {f.5:float(a/b)}')
s985575656
p02399
u150984829
1513100668
Python
Python3
py
Runtime Error
0
0
55
a,b=map(int,input().split()) print(,a//b,a%b,f{a/b:f}')
s152513585
p02399
u150984829
1513100675
Python
Python3
py
Runtime Error
0
0
56
a,b=map(int,input().split()) print(,a//b,a%b,f'{a/b:f}')
s418575078
p02399
u706217959
1513328177
Python
Python3
py
Runtime Error
0
0
259
import math def main(): data = [] n = input().split() a = int(n[0]) b = int(n[1]) divans = a / b intdiv = int(divans) divr = a % b print("{0} {1} {:.5f}".format(intdiv, divr, divans)) if __name__ == '__main__': main()
s414720457
p02399
u585035894
1513931323
Python
Python3
py
Runtime Error
0
0
32
print(int(input())/int(input()))
s416281042
p02399
u165141947
1514631416
Python
Python
py
Runtime Error
0
0
95
a, b = map(int, raw_input().split()) d = a/b r = a%b f = a*1.0/b print ???%d %d %f??? % (d,r,f)
s656210684
p02399
u737311644
1514700663
Python
Python3
py
Runtime Error
0
0
93
a,b=map(int,input().split()) d=str(a//b) r=str(a%b) f=str(a/b) print(d,r,"{0:.5f}".format(f))
s713643542
p02399
u737311644
1514700859
Python
Python3
py
Runtime Error
0
0
98
a,b=map(int,input().split()) d=str(a//b) r=str(a%b) f=str(a/b) print('{} {} {:f}'.format(d, r, f))
s513106247
p02399
u179070318
1515997794
Python
Python3
py
Runtime Error
0
0
73
a,b = [int(x) for x in input().split( )] print(%d,%d,%f,%(a//b,a%b,a/b))
s958050615
p02399
u640809202
1517670443
Python
Python3
py
Runtime Error
0
0
70
a, b= map(int, input().split()) d=int(a/b) r=a%b f=a/b print(a, b, c)
s222592489
p02399
u796301295
1517968117
Python
Python3
py
Runtime Error
0
0
78
import math a = float(input()) print (a ** 2.0 * math.pi, a * 2.0 * math.pi)
s265572635
p02399
u796301295
1517968225
Python
Python3
py
Runtime Error
0
0
78
a = float(input()) print (a ** 2.0 * 3.14159265359, a * 2.0 * 3.14159265359)
s335141866
p02399
u444576298
1518010695
Python
Python3
py
Runtime Error
0
0
160
#coding: utf-8 a, b = (int(i) for i in input().split()) print(int(a / b) , end = ' ') print(a % b , end = ' ') print("{: 0<7.5}".format(float(a) / float(b)))
s886874383
p02399
u299231628
1519297210
Python
Python
py
Runtime Error
0
0
132
a, b = map(int, input().split()) d = 0 while a > b: a -= b d += 1 r = a f = round(a/b, 5) print('{} {} {}'.format(d, r, f))
s957203969
p02399
u387507798
1519784348
Python
Python3
py
Runtime Error
0
0
87
a, b = [int(n) for n in src.readline().split()] print('%s %s %.5f' % (a//b, a%b, a/b))
s007034833
p02399
u613534067
1520161663
Python
Python3
py
Runtime Error
0
0
74
a, b = map(float, input().split()) print(a//b, a%b, "{0:.f}".format(a/b))
s451794319
p02399
u352203480
1521011008
Python
Python3
py
Runtime Error
0
0
193
x, y, z = input().split() a = int(x) b = int(y) c = int(z) count = 0 num = a while num <= b: if c % num == 0: count += 1 else: pass num += 1 print(count)
s834648804
p02399
u621084859
1522629038
Python
Python3
py
Runtime Error
0
0
75
x=input().split() a=int(x[0]) b=int(x[1]) print(%d %r %f%(a//b, a%b, a//b)
s930149607
p02399
u621084859
1522629078
Python
Python3
py
Runtime Error
0
0
77
x=input().split() a=int(x[0]) b=int(x[1]) print("%d %r %f"%(a//b, a%b, a//b)
s868148851
p02399
u621084859
1522629135
Python
Python3
py
Runtime Error
0
0
76
x=input().split() a=int(x[0]) b=int(x[1]) print("%d %r %f"%(a//b, a%b, a/b)
s219184815
p02399
u621084859
1522629180
Python
Python3
py
Runtime Error
0
0
76
x=input().split() a=int(x[0]) b=int(x[1]) print("%d %d %f"%(a//b, a%b, a/b)
s579945463
p02399
u244493040
1523636833
Python
Python3
py
Runtime Error
0
0
51
a,b = map(int,input().split()) print(a//b a%b a/b)
s270657540
p02399
u648117624
1524384067
Python
Python3
py
Runtime Error
0
0
108
a, b = map(int, input().split()) d = a // b r = a % b f = a / b print("{%d} {%d} {%f}".format(d,r,f))
s248956115
p02399
u648117624
1524390844
Python
Python3
py
Runtime Error
0
0
118
a, b = map(int, input().split()) #x = a // b #y = a % b #z = a / b print("{%d} {%d} {%f}".format(a//b, a%b,a/b))
s640616915
p02399
u648117624
1524391024
Python
Python3
py
Runtime Error
0
0
135
a, b = map(int, input().split()) #x = a // b #y = a % b #z = a / b print("{%d} {%d} {%f}".format(int(a//b), int(a%b),float(a/b)))
s546594265
p02399
u074747865
1524442929
Python
Python3
py
Runtime Error
0
0
68
a,b= map(int, input().split()) print(int(a//b), int(a%b),float(a/b)
s317407298
p02399
u485986915
1524459894
Python
Python3
py
Runtime Error
0
0
73
a,b = map(int,input().split()) int d = a/b r = a%b f = a/b print(d,r,f)
s770077575
p02399
u589139267
1524478670
Python
Python3
py
Runtime Error
0
0
109
a, b = map(int, input().split()) d = a // b r = a % b f = a / b print("{:d} {;d} {:.5f}".format(d, r, f))
s917849929
p02399
u836133197
1524490717
Python
Python3
py
Runtime Error
0
0
71
a, b = map(int, input().split()) print(a//b, a%b, "{10f}".format(a/b))
s828562251
p02399
u836133197
1524490753
Python
Python3
py
Runtime Error
0
0
81
a, b = map(int, input().split()) print(a//b, " ", a%b, " ", "{10f}".format(a/b))
s199825009
p02399
u836133197
1524490987
Python
Python3
py
Runtime Error
0
0
70
a, b = map(int, input().split()) print("%d %d %.5f" % a//b, a%b, a/b)
s269222118
p02399
u074747865
1524554754
Python
Python3
py
Runtime Error
0
0
70
a,b=map(int,input().split()) print(a//b,a%b,'{0:10.5f}'.format(a/b'))
s575795406
p02399
u781194524
1524815964
Python
Python3
py
Runtime Error
0
0
74
a,b=[int() for x in input().split()] print(int(a/b),int(a%b),double(a/b))
s966528413
p02399
u781194524
1524815975
Python
Python3
py
Runtime Error
0
0
75
a,b=[int(x) for x in input().split()] print(int(a/b),int(a%b),double(a/b))
s747262224
p02399
u781194524
1524815988
Python
Python3
py
Runtime Error
0
0
75
a,b=[int(x) for x in input().split()] print(int(a/b).int(a%b).double(a/b))
s960823612
p02399
u781194524
1524816258
Python
Python
py
Runtime Error
0
0
76
a,b=[int(x) for x in input().split()] print(int(a/b),int(a%b),Decimal(a/b))
s747046058
p02399
u781194524
1524816315
Python
Python
py
Runtime Error
0
0
81
a,b=[int(x) for x in input().split()] print(int(a/b),int(a%b),float(float(a)/b))
s607010548
p02399
u781194524
1524816333
Python
Python
py
Runtime Error
0
0
74
a,b=[int(x) for x in input().split()] print(int(a/b),int(a%b),float(a)/b)
s501291128
p02399
u781194524
1524816342
Python
Python
py
Runtime Error
0
0
74
a,b=[int(x) for x in input().split()] print(int(a/b),int(a%b),float(a/b))
s184761018
p02399
u455935767
1527060223
Python
Python3
py
Runtime Error
0
0
103
a = int(input().split()) print(str(int(a[0]/a[1]))) print(str(a[0]%a[1])) print(str(a[0]/float(a[1])))
s232019208
p02399
u940150266
1527156451
Python
Python3
py
Runtime Error
0
0
144
a,b,c = map(int, input().split()) sum = 0 result = 0 while b >= a: result = c%a if result == 0: sum += 1 a += 1 print(sum)
s211960655
p02399
u500257793
1527675720
Python
Python3
py
Runtime Error
0
0
69
a,b=map(int,input().split()) s=a//b r=a%b f=double(a)/b print(s,r,f)
s924655039
p02399
u500257793
1527675759
Python
Python3
py
Runtime Error
0
0
69
a,b=map(int,input().split()) s=a//b r=a%b f=a/b print(s,r,double(f))
s703160468
p02399
u597483031
1528469782
Python
Python3
py
Runtime Error
0
0
97
a,b=map(int,input().split()) one=a//b two=a%b three=a/b print(a//b,a%b,"{:three}".format(three))
s980561279
p02399
u597483031
1528469852
Python
Python3
py
Runtime Error
0
0
52
a,b=map(int,input().split()) print(a//b,a%b,{:a/b})
s161496400
p02399
u763301852
1363008179
Python
Python
py
Runtime Error
0
0
81
a, b = map(int, raw_input().split()) print("%d %d %f", % (a//b, a%b, a/float(b)))
s579859591
p02399
u434428594
1363435933
Python
Python
py
Runtime Error
0
0
54
a,b = map(int, raw_input()) print a/b, a%b, float(a)/b
s739904187
p02399
u912237403
1370860499
Python
Python
py
Runtime Error
20
4228
122
import sys for line in sys.stdin: a,b = line.split() a,b = int(a),int(b) print '%d %d %f' %(a/b, a%b, 1.0*a/b)
s290240450
p02399
u912237403
1370861201
Python
Python
py
Runtime Error
20
4228
124
import sys for line in sys.stdin: a,b = line.split() a,b = int(a),int(b) print '%d %d %f15' %(a/b, a%b, 1.0*a/b)
s212830243
p02399
u912237403
1370861432
Python
Python
py
Runtime Error
10
4228
126
import sys for line in sys.stdin: a,b = line.split() a,b = int(a),int(b) print '%d %d %5.10f' %(a/b, a%b, 1.0*a/b)
s496591987
p02399
u912237403
1370861500
Python
Python
py
Runtime Error
20
4228
125
import sys for line in sys.stdin: a,b = line.split() a,b = int(a),int(b) print '%d %d %5.8f' %(a/b, a%b, 1.0*a/b)
s768518664
p02399
u912237403
1370861852
Python
Python
py
Runtime Error
20
4268
127
import sys for line in sys.stdin: a,b = line.split() a,b = long(a),long(b) print '%d %d %5.8f' %(a/b, a%b, 1.0*a/b)
s942220090
p02399
u912237403
1370861929
Python
Python
py
Runtime Error
20
4228
128
import sys for line in sys.stdin: a,b = line.split(' ') a,b = int(a),int(b) print '%d %d %5.8f' %(a/b, a%b, 1.0*a/b)
s841398808
p02399
u912237403
1370862134
Python
Python
py
Runtime Error
20
4228
128
import sys for line in sys.stdin: a,b = line.split(' ') a,b = int(a),int(b) print '%d %d %5.8f' %(a/b, a%b, 1.0*a/b)
s287170847
p02399
u912237403
1370862369
Python
Python
py
Runtime Error
10
4228
125
import sys for line in sys.stdin: a,b = line.split() a,b = int(a),int(b) print '%d %d %5.6f' %(a/b, a%b, 1.0*a/b)
s211440404
p02399
u912237403
1370862670
Python
Python
py
Runtime Error
20
4232
130
import sys for line in sys.stdin: a,b = line.split(' ',2) a,b = int(a),int(b) print '%d %d %5.6f' %(a/b, a%b, 1.0*a/b)
s412324578
p02399
u912237403
1370862747
Python
Python
py
Runtime Error
20
4232
130
import sys for line in sys.stdin: a,b = line.split(' ',1) a,b = int(a),int(b) print '%d %d %5.6f' %(a/b, a%b, 1.0*a/b)
s222473261
p02399
u912237403
1370863828
Python
Python
py
Runtime Error
10
4228
124
import sys for line in sys.stdin: a,b = line.split() a,b = int(a),int(b) print '%d %d %.8f' %(a/b, a%b, 1.0*a/b)
s803712528
p02399
u912237403
1370864385
Python
Python
py
Runtime Error
10
4236
156
import sys for line in sys.stdin: p = line.index(' ') a,b = line[:p],line[p+1:] a,b = int(a),int(b) print '%d %d %.12f' %(a/b, a%b, 1.0*a/b)
s347416511
p02399
u912237403
1370865037
Python
Python
py
Runtime Error
0
0
165
import sys for line in sys.stdin: p = line.strip('\n').index() a,b = line[:p],line[p+1:] a,b = int(a),int(b) print '%d %d %.12f' %(a/b, a%b, 1.0*a/b)
s447347671
p02399
u912237403
1370865104
Python
Python
py
Runtime Error
10
4236
168
import sys for line in sys.stdin: p = line.strip('\n').index(' ') a,b = line[:p],line[p+1:] a,b = int(a),int(b) print '%d %d %.12f' %(a/b, a%b, 1.0*a/b)
s469871053
p02399
u511257811
1381663055
Python
Python
py
Runtime Error
20
4220
152
import sys for line in sys.stdin: a, b = map(int, line.rstrip('\n').split(' ')) d, r, f = a/b, a%b, (a*1.0)/b print '%d %d %.5f' % (d, r, f)
s195887372
p02399
u140201022
1381728779
Python
Python
py
Runtime Error
0
0
124
while True: i = map(int, raw_input().split()) if i[1]==0: break else: print i[0]/i[1],i[0]%i[1],float(i[0])/i[1]
s896434407
p02399
u633068244
1393318045
Python
Python
py
Runtime Error
0
0
70
a,b = map(int, raw_input().split()) print a/b, a % b, real(a)/real(b)
s646561381
p02399
u633068244
1393318435
Python
Python
py
Runtime Error
0
0
79
a,b = map(int, raw_input().split()) print ("%d %d %f" %(a//b,a % b,a/float(b))
s891466286
p02399
u193025715
1394557291
Python
Python
py
Runtime Error
0
0
188
#!/usr/bin/python import sys num = str(raw_input()).split(" ") a = int(num[0]) b = int(num[1]) d = a / b - a % b r = a % b float f = a / b print str(d + " " + r + " " + f) sys.exit()
s209254447
p02399
u971748390
1398315459
Python
Python
py
Runtime Error
0
0
61
a,b = map(int,raw_input()) d=a/b r=a%b f=1.0*a/b print d,r,f
s954316299
p02399
u971748390
1398315487
Python
Python
py
Runtime Error
0
0
61
a,b = map(int,raw_input()) d=a/b r=a%b f=1.0*a/b print d,r,f
s883055595
p02400
u917722865
1530788372
Python
Python3
py
Runtime Error
0
0
255
#include <iostream> #include <iomanip> using namespace std; int main() { const double PI = 3.141592653589; double r; double area, circle; area = r * r * PI; circle = 2 * r * PI; cout << fixed << setprecision(5) << area << " " << circle << endl; }
s946422759
p02400
u917722865
1530788465
Python
Python3
py
Runtime Error
0
0
266
#include <iostream> #include <iomanip> using namespace std; int main() { const double PI = 3.141592653589; double r; double area, circle; cin >> r; area = r * r * PI; circle = 2 * r * PI; cout << fixed << setprecision(5) << area << " " << circle << endl; }
s833350532
p02400
u203222829
1530879157
Python
Python3
py
Runtime Error
0
0
83
import math r = int(input()) print(math.pai * r * r, 4 * math.pai * r * r * r / 3)
s350105523
p02400
u203222829
1530879231
Python
Python3
py
Runtime Error
0
0
95
import math r = int(input()) s = math.pai * r ** 2 l = 4 * math.pai * r ** 3 / 3 print(s, l)
s552368560
p02400
u203222829
1530879278
Python
Python3
py
Runtime Error
0
0
97
import math r = float(input()) s = math.pai * r ** 2 l = 4 * math.pai * r ** 3 / 3 print(s, l)
s598391846
p02400
u548155360
1531368117
Python
Python3
py
Runtime Error
0
0
62
import math r=int(input()) print(math.pi*r**2, 2*math.pi*r)
s886289520
p02400
u548155360
1531368143
Python
Python3
py
Runtime Error
0
0
62
import math r=int(input()) print(math.PI*r**2, 2*math.PI*r)
s618311747
p02400
u548155360
1531368210
Python
Python3
py
Runtime Error
0
0
64
import math r=float(input()) print(math.PI*r**2, 2*math.PI*r)
s241608924
p02400
u800021849
1531466706
Python
Python3
py
Runtime Error
0
0
88
pi = 3.141592653589793 r = int(input()) print("%.6f %.6f" % (pi * r ** 2, 2 * pi * r))
s073017750
p02400
u222716853
1532004440
Python
Python3
py
Runtime Error
0
0
102
from decimal import Decimal import math r =int(input()) R = r*2*math.pi S = r**2*math.pi print(R,S)
s972769068
p02400
u222716853
1532004519
Python
Python3
py
Runtime Error
0
0
73
import math r =int(input()) R = r*2*math.pi S = r**2*math.pi print(R,S)
s842916409
p02400
u336705996
1535087966
Python
Python3
py
Runtime Error
0
0
87
from math import pi r = int(input()) print('{0:0.8f} {1:0.8f}'.format(r*r*pi,2*pi*r))
s445984255
p02400
u689047545
1535187439
Python
Python3
py
Runtime Error
0
0
92
import numpy as np r = int(input()) print ('{0:.6f} {1:.6f}'.format(r*r*np.pi, 2*r*np.pi))
s319974289
p02400
u689047545
1535187492
Python
Python3
py
Runtime Error
0
0
94
import numpy as np r = float(input()) print ('{0:.6f} {1:.6f}'.format(r*r*np.pi, 2*r*np.pi))
s749145345
p02400
u973203074
1535273685
Python
Python3
py
Runtime Error
0
0
70
from math import pi r = int(input()) print(pi * r ** 2, pi * r * 2)