USACO Silver 2016 January - Angry Cows

Author: Óscar Garries

Official Analysis

C++

C++ Implementation

1#include <bits/stdc++.h>
2
3using namespace std;
4
5int main () {
6 freopen("angry.in", "r", stdin);
7 freopen("angry.out", "w", stdout);
8
9 int n, k;
10 cin >> n >> k;

Give Us Feedback on USACO Silver 2016 January - Angry Cows!

Join the Discussion!

Feel free to voice your thoughts in the comments section.