USACO Silver 2018 Open - Lemonade Line
Author: Mrinall Umasudhan
Appears In
Implementation
C++
See official editorial: http://www.usaco.org/current/data/sol_lemonade_silver_open18.html
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!