USACO 2017 January Silver - Cow Dance Show

Author: Óscar Garries

Official Editorial: http://www.usaco.org/current/data/sol_cowdance_silver_jan17.html

C++

C++ Implementation

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

Give Us Feedback on USACO 2017 January Silver - Cow Dance Show!