Fading Coder

One Final Commit for the Last Sprint

Problems and Solutions from AtCoder Beginner Contest 053

A int N; std::cin >> N; std::cout << (N < 1200 ? "ABC" : "ARC") << "\n"; B Problem: Snuke wants to take a substring from ( s ) that starts with 'A' and ends with 'Z'. Given ( s ), find the length of the longest such substring. It is guaranteed that...