diff options
Diffstat (limited to 'problems/raidtime/attachments/template.cpp')
-rw-r--r-- | problems/raidtime/attachments/template.cpp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/problems/raidtime/attachments/template.cpp b/problems/raidtime/attachments/template.cpp new file mode 100644 index 0000000..2c74c71 --- /dev/null +++ b/problems/raidtime/attachments/template.cpp @@ -0,0 +1,27 @@ +#include <iostream> +#include <string> +#include <vector> +#include <algorithm> + +using namespace std; + +int main() +{ + int w; + cin >> w; cin.ignore(); + for (int i = 0; i < w; i++) { + string wall; + getline(cin, wall); + } + int d; + cin >> d; cin.ignore(); + for (int i = 0; i < d; i++) { + string door; + getline(cin, door); + } + + // Write an answer using cout. DON'T FORGET THE "<< endl" + // To debug: cerr << "Debug messages..." << endl; + + cout << "0 C4 needed to go through 0 walls" << endl; +} |