FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Java/meetings.java at master · javaarchive/Java · GitHub
This repository was archived by the owner on Feb 29, 2024. It is now read-only.
javaarchive
/
Java
Public archive
Notifications
You must be signed in to change notification settings
Fork
0
Star
2
Code
Issues
0
Pull requests
3
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
Java
/
meetings.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
38 lines (36 loc) · 1004 Bytes
Breadcrumbs
Java
/
meetings.java
Copy path
File metadata and controls
38 lines (36 loc) · 1004 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import
java
.
io
.*;
import
java
.
util
.*;
public
class
meetings
{
public
static
void
main
(
String
[]
args
)
throws
IOException
{
// TODO Auto-generated method stub
BufferedReader
f
=
new
BufferedReader
(
new
FileReader
(
"meetings.in"
));
PrintWriter
pw
=
new
PrintWriter
(
new
BufferedWriter
(
new
FileWriter
(
"meetings.in"
)));
int
N
,
L
;
StringTokenizer
st
=
new
StringTokenizer
(
f
.
readLine
());
N
=
Integer
.
parseInt
(
st
.
nextToken
());
L
=
Integer
.
parseInt
(
st
.
nextToken
());
List
<
Cow
>
c
=
new
ArrayList
<>();
for
(
int
i
=
0
;
i
<
N
;
i
++) {
int
w
=
Integer
.
parseInt
(
st
.
nextToken
());
int
x
=
Integer
.
parseInt
(
st
.
nextToken
());
int
d
=
Integer
.
parseInt
(
st
.
nextToken
());
c
.
add
(
new
Cow
(
x
,
d
,
w
));
}
// Simulate
while
(
true
) {
break
;
// Temporary to prevent infinite loop
}
pw
.
close
();
f
.
close
();
}
}
class
Cow
{
int
pos
;
int
velocity
;
int
weight
;
public
Cow
(
int
pos
,
int
v
,
int
w
) {
this
.
weight
=
w
;
this
.
velocity
=
v
;
this
.
pos
=
pos
;
}
}
Back
|
FazBrowse Home
|
New Git URL