알고리즘 문제풀이/[C++] Codeground
Codeground 문제 3번 시험 공부
큰 어려움없이 구할 수 있었습니다. 코드는 다음과 같습니다: #include #include #include using namespace std; int Answer; int main(int argc, char** argv) { int T, test_case; /* The freopen function below opens input.txt file in read only mode, and afterward, the program will read from input.txt file instead of standard(keyboard) input. To test your program, you may save input data in input.txt file, and use freopen functio..