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
int64
0
100
memory
stringlengths
4
6
code_size
int64
15
14.7k
code
stringlengths
15
14.7k
problem_id
stringlengths
6
6
problem_description
stringlengths
358
9.83k
input
stringlengths
2
4.87k
output
stringclasses
807 values
__index_level_0__
int64
1.1k
1.22M
s820847420
p00375
u555228137
1589245690
Python
Python3
py
Accepted
20
5580
40
F=int(input()) C=int((F-30)/2) print(C)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,034
s437212542
p00375
u918533241
1589245592
Python
Python3
py
Accepted
20
5576
36
F=int(input()) c=(F-30)//2 print(c)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,035
s211787483
p00375
u716689190
1589245390
Python
Python3
py
Accepted
20
5576
34
F = int(input()) print((F-30)//2)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,036
s180630252
p00375
u221550784
1589245324
Python
Python3
py
Accepted
20
5580
40
x=int(input()) y=int((x-30)/2) print(y)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,037
s135837917
p00375
u171326376
1589244921
Python
Python3
py
Accepted
20
5576
44
F = int(input()) C = (F - 30) // 2 print(C)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,038
s403860587
p00375
u630948380
1589243624
Python
Python3
py
Accepted
20
5572
36
F=int(input()) print(int((F-30)/2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,039
s359741800
p00375
u677563181
1589243003
Python
Python3
py
Accepted
20
5572
36
f=int(input()) c=(f-30)//2 print(c)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,040
s353032941
p00375
u228556128
1589237527
Python
Python3
py
Accepted
20
5576
36
F=int(input()) C=(F-30)//2 print(C)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,041
s819811795
p00375
u706683821
1589210054
Python
Python3
py
Accepted
20
5572
36
F=int(input()) print(int((F-30)/2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,042
s417283005
p00375
u419548414
1589208418
Python
Python3
py
Accepted
20
5576
37
f=int(input()) c=(f-30)//2 print(c)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,043
s128465145
p00375
u253463111
1589207364
Python
Python3
py
Accepted
20
5576
35
a=int(input()) print(int(a-30)//2)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,044
s120887821
p00375
u290304811
1589200452
Python
Python3
py
Accepted
20
5576
38
a = int(input()) print(int((a-30)/2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,045
s856615733
p00375
u206985725
1589191495
Python
Python3
py
Accepted
20
5600
56
F=int(input()) C=int((F-30)/2) format(C,'.0f') print(C)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,046
s350984367
p00375
u673183698
1589188978
Python
Python3
py
Accepted
20
5572
32
i=int(input()) print((i-30)//2)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,047
s650276940
p00375
u082412851
1589188743
Python
Python3
py
Accepted
20
5576
34
F = int(input()) print((F-30)//2)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,048
s972197151
p00375
u528181593
1589184748
Python
Python3
py
Accepted
20
5576
38
F=int(input()) print(round((F-30)/2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,049
s934556984
p00375
u574841425
1589182415
Python
Python3
py
Accepted
20
5580
40
F=int(input()) C=(F-30)/2 print(int(C))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,050
s617289755
p00375
u413645175
1589181914
Python
Python3
py
Accepted
20
5580
57
F = int(input()) C = F - 30 C = int( F - 30)//2 print(C)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,051
s005631738
p00375
u363460225
1589181730
Python
Python3
py
Accepted
20
5580
41
f=int(input()) c=int((f-30)/2) print(c)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,052
s562822198
p00375
u444626963
1589181517
Python
Python3
py
Accepted
20
5576
38
c=int(input()) x=c-30 print(int(x/2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,053
s081124306
p00375
u319403848
1589181202
Python
Python3
py
Accepted
20
5580
40
F=int(input()) C=int((F-30)/2) print(C)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,054
s242696634
p00375
u868891301
1589180786
Python
Python3
py
Accepted
20
5576
36
F=int(input()) C=(F-30)//2 print(C)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,055
s718943283
p00375
u645087541
1589179959
Python
Python3
py
Accepted
20
5644
50
import math F = int(input()) print(int((F-30)/2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,056
s359798064
p00375
u162292165
1589179445
Python
Python3
py
Accepted
20
5640
52
import math f=int(input()) c=int((f-30)/2) print(c)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,057
s116111367
p00375
u838993229
1589178766
Python
Python3
py
Accepted
20
5592
50
a = int(input()) print('{:.0f}'.format((a-30)/2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,058
s927814726
p00375
u064625546
1589177850
Python
Python3
py
Accepted
20
5580
40
F=int(input()) C=int((F-30)/2) print(C)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,059
s442959955
p00375
u278236319
1589176885
Python
Python3
py
Accepted
20
5580
41
F=int(input()) C=(F-30)/2 print(int(C))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,060
s632528118
p00375
u900012957
1589175368
Python
Python3
py
Accepted
20
5576
40
F = int(input()) C = (F-30)//2 print(C)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,061
s914791533
p00375
u053015104
1589175155
Python
Python3
py
Accepted
20
5576
33
a=int(input()) print((a-30)//2)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,062
s665174590
p00375
u397004753
1589174915
Python
Python3
py
Accepted
20
5576
36
F=int(input()) print(int((F-30)/2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,063
s197349054
p00375
u919773430
1589174863
Python
Python
py
Accepted
10
4628
33
F = int(input()) print((F-30)/2)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,064
s962524591
p00375
u037263780
1589174332
Python
Python3
py
Accepted
20
5576
32
f=int(input()) print((f-30)//2)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,065
s505804825
p00375
u627612495
1589174216
Python
Python3
py
Accepted
20
5572
35
F = int(input()) print((F-30)//2)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,066
s535293064
p00375
u118506623
1589173934
Python
Python3
py
Accepted
20
5576
38
F = int(input()) print(int((F-30)/2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,067
s488762211
p00375
u371026526
1589173700
Python
Python3
py
Accepted
20
5576
38
f = int(input()) print(int((f-30)/2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,068
s088403376
p00375
u644959375
1589172674
Python
Python3
py
Accepted
20
5576
40
F=int(input()) C=(F-30)/2 print(int(C))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,069
s962892211
p00375
u981910313
1589172540
Python
Python3
py
Accepted
20
5576
36
F=int(input()) C=(F-30)//2 print(C)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,070
s750225676
p00375
u427834127
1589167605
Python
Python3
py
Accepted
20
5576
36
F=int(input()) C=(F-30)//2 print(C)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,071
s419848342
p00375
u931484744
1589167370
Python
Python3
py
Accepted
20
5580
77
# coding: utf-8 # Your code here! F = int(input()) print(int((F - 30) / 2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,072
s858537306
p00375
u442912414
1589163905
Python
Python3
py
Accepted
20
5580
44
f=int(input()) c=(f-30)/2 c=int(c) print(c)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,073
s557040411
p00375
u322947441
1589162817
Python
Python3
py
Accepted
20
5576
38
F = int(input()) print(int((F-30)/2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,074
s965719067
p00375
u548283997
1589130407
Python
Python3
py
Accepted
20
5576
36
F=int(input()) C=(F-30)//2 print(C)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,075
s085372114
p00375
u577978368
1589126329
Python
Python3
py
Accepted
20
5576
39
F = int(input()) print(int((F-30)/2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,076
s106332299
p00375
u320921262
1589091050
Python
Python3
py
Accepted
20
5576
33
F=int(input()) print((F-30)//2)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,077
s432783165
p00375
u795882061
1589029928
Python
Python3
py
Accepted
20
5596
56
F = int(input()) C = (F-30)/2 print('{:.0f}'.format(C))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,078
s297367811
p00375
u862272701
1589015817
Python
Python3
py
Accepted
20
5580
45
F = int(input()) C = int((F-30)/2) print(C)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,079
s169867688
p00375
u140569607
1589009375
Python
Python3
py
Accepted
20
5652
57
F = int(input()) import math print(math.floor((F-30)/2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,080
s093929901
p00375
u753534330
1588937128
Python
Python3
py
Accepted
20
5576
36
f=int(input()) c=(f-30)//2 print(c)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,081
s564178721
p00375
u904289400
1588929181
Python
Python3
py
Accepted
20
5580
46
F = int(input()) C = (F-30)/2 print(round(C))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,082
s660835144
p00375
u514242733
1588926703
Python
Python3
py
Accepted
20
5576
40
x=input() x=int(x) y=(x-30)//2 print(y)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,083
s153227761
p00375
u874049078
1588926129
Python
Python3
py
Accepted
20
5576
33
F= int(input()) print((F-30)//2)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,084
s703142673
p00375
u192469946
1588923663
Python
Python3
py
Accepted
20
5572
39
F = int(input()) print( (F - 30) // 2)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,085
s049623039
p00375
u705625724
1588921909
Python
Python3
py
Accepted
20
5580
82
# coding: utf-8 # Your code here! F=int(input()) A = int((F-30)/2) print('%d'%A)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,086
s220877936
p00375
u259416836
1588918044
Python
Python3
py
Accepted
20
5572
36
F=int(input()) C=(F-30)//2 print(C)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,087
s384167096
p00375
u976648183
1588916853
Python
Python3
py
Accepted
20
5652
60
import math p=int(input()) c=(p-30)/2 print(math.floor(c))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,088
s281295401
p00375
u037566157
1588909605
Python
Python3
py
Accepted
20
5576
38
x=int(input()) print(round((x-30)/2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,089
s556200117
p00375
u711365732
1588905610
Python
Python3
py
Accepted
20
5576
35
F = int(input()) print ((F-30)//2)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,090
s736246315
p00375
u996694149
1588863380
Python
Python3
py
Accepted
20
5576
44
F = int(input()) print(round((F - 30) / 2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,091
s638933767
p00375
u583329397
1588862178
Python
Python3
py
Accepted
20
5576
32
a=int(input()) print((a-30)//2)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,092
s648055145
p00375
u994684803
1588862018
Python
Python3
py
Accepted
20
5576
34
f = int(input()) print((f-30)//2)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,093
s919880717
p00375
u747915832
1588844377
Python
Python3
py
Accepted
20
5576
45
F = int(input()) C = int((F-30)/2) print(C)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,094
s934159611
p00375
u421274895
1588843869
Python
Python3
py
Accepted
20
5580
42
F =int(input()) C =int((F-30)/2) print(C)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,095
s078008310
p00375
u138194441
1588836680
Python
Python3
py
Accepted
20
5584
49
a= int(input()) b=a-30 x=divmod(b,2) print(x[0])
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,096
s570164530
p00375
u457539618
1588829845
Python
Python3
py
Accepted
20
5580
45
C = int(input()) F = (C-30)/2 print(int(F))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,097
s840278117
p00375
u350963229
1588760419
Python
Python3
py
Accepted
20
5576
38
F=int(input()) print(int((F-30)/2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,098
s795471817
p00375
u511292942
1588734819
Python
Python3
py
Accepted
20
5576
34
F = int(input()) print((F-30)//2)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,099
s846603253
p00375
u593595530
1588696039
Python
Python3
py
Accepted
20
5580
40
F=int(input()) C=int((F-30)/2) print(C)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,100
s782640439
p00375
u272062354
1588670663
Python
Python3
py
Accepted
20
5576
37
F=int(input()) C=(F-30)//2 print(C)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,101
s313106870
p00375
u455994792
1588666079
Python
Python3
py
Accepted
20
5576
38
F=int(input()) print((int)((F-30)/2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,102
s519515962
p00375
u251716708
1588654016
Python
Python3
py
Accepted
20
5576
107
# coding: utf-8 # Your code here! a = int(input()) print((a-30)//2) #小数点以下の桁数を0に指定
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,103
s336096426
p00375
u685887060
1588646796
Python
Python3
py
Accepted
20
5580
48
F = int(input()) a = int((F - 30) / 2) print(a)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,104
s711075724
p00375
u470391435
1588638263
Python
Python3
py
Accepted
30
5576
38
F = int(input()) print(int((F-30)/2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,105
s319319349
p00375
u884758681
1588635271
Python
Python3
py
Accepted
20
5584
76
F=int(input()) if F%2==0: C=(F-30)//2 print(int(C)) else: pass
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,106
s704604111
p00375
u128671689
1588602948
Python
Python3
py
Accepted
20
5576
40
F=int(input()) C=int((F-30)/2) print(C)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,107
s062219281
p00375
u062640303
1588599925
Python
Python3
py
Accepted
20
5576
36
F=int(input()) print(int((F-30)/2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,108
s511168450
p00375
u988962397
1588578981
Python
Python3
py
Accepted
20
5576
36
a=int(input()) print(int((a-30)/2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,109
s686474562
p00375
u173393391
1588576955
Python
Python3
py
Accepted
20
5580
61
F=int(input()) if F%2==0: c=(F-30)//2 print(int(c))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,110
s867752522
p00375
u647921435
1588549239
Python
Python3
py
Accepted
20
5580
67
F=int(input()) if F%2==0: print(int((F-30)/2)) else: pass
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,111
s958387861
p00375
u177648086
1588520662
Python
Python3
py
Accepted
20
5576
32
a=int(input()) print((a-30)//2)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,112
s058379514
p00375
u288578617
1588505822
Python
Python3
py
Accepted
20
5576
37
F=int(input()) C=(F-30)//2 print(C)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,113
s312672771
p00375
u799752967
1588498226
Python
Python3
py
Accepted
20
5596
53
F=int(input()) C=(F-30)/2 print('{:0.0f}'.format(C))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,114
s590751002
p00375
u926092389
1588494265
Python
Python3
py
Accepted
20
5580
41
F=int(input()) C=(F-30)/2 print(int(C))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,115
s402972039
p00375
u991830357
1588492343
Python
Python3
py
Accepted
20
5576
36
F=int(input()) print(int((F-30)/2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,116
s201113693
p00375
u511744190
1588478960
Python
Python3
py
Accepted
20
5572
37
F=int(input()) print(int((F-30)/2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,117
s014003055
p00375
u834258010
1588471811
Python
Python3
py
Accepted
20
5576
40
F=int(input()) C=int((F-30)/2) print(C)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,118
s762587582
p00375
u395654950
1588427381
Python
Python3
py
Accepted
20
5580
77
# coding: utf-8 # Your code here! F = int(input()) print(int((F - 30) / 2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,119
s357186028
p00375
u435414815
1588425936
Python
Python3
py
Accepted
20
5580
44
F = int(input()) C = int((F-30)/2) print(C)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,120
s242118737
p00375
u895962529
1588424550
Python
Python3
py
Accepted
20
5576
36
F=int(input()) print(int((F-30)/2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,121
s694347526
p00375
u057249340
1588413271
Python
Python3
py
Accepted
20
5580
66
# coding: utf-8 # Your code here! f=int(input()) print((f-30)//2)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,122
s355702822
p00375
u695386605
1588403155
Python
Python3
py
Accepted
20
5572
35
a = int(input()) print((a-30)//2)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,123
s865594183
p00375
u275486335
1588388183
Python
Python3
py
Accepted
20
5576
38
F=int(input()) print(int((F-30)/2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,124
s354228525
p00375
u014861569
1588355600
Python
Python3
py
Accepted
20
5580
40
F=int(input()) C=int((F-30)/2) print(C)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,125
s940111561
p00375
u946454151
1588077237
Python
Python3
py
Accepted
20
5572
26
print(int(input())-30>>1)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,126
s575494184
p00375
u037441960
1587989843
Python
Python3
py
Accepted
20
5576
39
F = int(input()) print((F - 30) // 2)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,127
s436708240
p00375
u814278309
1587802507
Python
Python3
py
Accepted
30
5576
36
F=int(input()) C=(F-30)//2 print(C)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,128
s158339652
p00375
u630911389
1585012469
Python
Python3
py
Accepted
20
5576
42
f = int(input()) print(int((f - 30) / 2))
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,129
s652420864
p00375
u934460477
1580005849
Python
Python3
py
Accepted
20
5576
32
f=int(input()) print((f-30)//2)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,130
s766006751
p00375
u829695570
1575725998
Python
Python3
py
Accepted
20
5572
28
print((int(input())-30)//2)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,131
s327212070
p00375
u798961710
1574693067
Python
Python3
py
Accepted
20
5576
34
f = int(input()) print((f-30)//2)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,132
s805977155
p00375
u153447291
1573736590
Python
Python3
py
Accepted
20
5576
34
F = int(input()) print((F-30)//2)
p00375
<h1>Celsius/Fahrenheit</h1>   <p> In Japan, temperature is usually expressed using the Celsius (&#x2103) scale. In America, they used the Fahrenheit (&#x2109) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered...
68
19
19,133