코드포스(CodeForce)
-
Codeforces Round #479 (Div. 3) - B - Two-gram코드포스(CodeForce) 2018. 8. 17. 15:30
1. 문제 B. Two-gramtime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputTwo-gram is an ordered pair (i.e. string of length two) of capital Latin letters. For example, "AZ", "AA", "ZA" — three distinct two-grams.You are given a string ss consisting of nn capital Latin letters. Your task is to find any two-gram contained in the given string as a substr..
-
Codeforces Round #497 (Div. 2)코드포스(CodeForce) 2018. 7. 15. 13:48
1. 문제 - http://codeforces.com/contest/1008/problem/Av 는 지금 막 baralnese 언어를 공부하기 시작했다. baralnese 는 라틴 알파뱃을 사용하는 것으로 알려져 있다.모음으로는 a,o,u,i,e 가 있다. 다른 글자들은 자음이다. 이 글자는 모음 뒤에는 모든 자음이 올 수 있다. 하지만 모음 뒤 에는 모음이 올 수 없다.단 하나의 예외는 'n' 이다. 이 글자 뒤에는 아무 문자나 올 수 있다(모음, 자음 상관이 없음) 또한 글자가 업슬 수 도 있다. 2. 알고리즘키워드 - 구현, 문자열 3. 코드 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484..
-
Educational Codeforces Round 47 (Rated for Div. 2)코드포스(CodeForce) 2018. 7. 15. 11:01
1. 문제http://codeforces.com/contest/1009/problem/A 2. 알고리즘키워드 - 구현, 배열 3. 코드 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162#include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; #define MAX_SIZE 100#define INF 0x7fffffff#define CENDL "\n"#define l..
-
Codeforces Round #496 (Div. 3)코드포스(CodeForce) 2018. 7. 10. 09:57
1. 문제http://codeforces.com/contest/1005/problem/A 2. 알고리즘키워드 - 구현접근법 - 입력되는 정수 중에 가장 큰 정수를 vector 리스트에 삽입, 이전값보다 작을때는 clear 이전 값과 같을 때도 리스트에 삽입 3. 코드 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859#include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; #..
-
Codeforces Round #479 (Div. 3)코드포스(CodeForce) 2018. 6. 30. 11:43
1. 문제 (http://codeforces.com/contest/977/problem/A)A. Wrong Subtractiontime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputLittle girl Tanya is learning how to decrease a number by one, but she does it wrong with a number consisting of two or more digits. Tanya subtracts one from a number by the following algorithm:if the last digit of the number ..