USACO Silver 2015 December - High Card Wins

Author: Óscar Garries

Official Analysis

C++

Implementation

#include <bits/stdc++.h>
using namespace std;
int main () {
freopen("highcard.in", "r", stdin);
freopen("highcard.out", "w", stdout);
int n;
cin >> n;

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!