Search found 1 match

by nicomoregu
Tue Feb 24, 2015 7:28 pm
Forum: Volume 113 (11300-11399)
Topic: 11389 - The Bus Driver Problem
Replies: 10
Views: 10402

Re: 11389 - The Bus Driver Problem

import java.util.*;
import java.io.*;

class Main
{
public static void main (String[] args) throws Throwable{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String[] lin= br.readLine().split(" ");
int n =Integer.parseInt(lin[0]) ; int d =Integer.parseInt(lin[1]); int r ...

Go to advanced search