[HackerRank] Exceptional Server
2022. 3. 8. 22:56
Exceptional Server / Medium 문제링크 https://www.hackerrank.com/challenges/exceptional-server/problem Exceptional Server | HackerRank Handle server errors. www.hackerrank.com 여러가지 케이스에 대한 exception 처리를 간단하게 구현하는 문제이다. C++ 풀이 #include #include #include #include #include #include using namespace std; class Server { private: static int load; public: static int compute(long long A, long long B) { load +..