USACO Silver 2018 Open - Lemonade Line

Author: Mrinall Umasudhan

Official Analysis

Implementation

Java

import java.io.*;
import java.util.*;
class cows {
int vals;
public cows(int vals)
{
this.vals = vals;
}
public int getVals(){
return this.vals;

Join the USACO Forum!

Stuck on a problem, or don't understand a module? Join the USACO Forum and get help from other competitive programmers!