백준 14470번: 전자레인지
-
백준 14470번: 전자레인지사칙연산(Arithmetic Operation) 2018. 7. 28. 11:25
https://www.acmicpc.net/problem/14470 1. 문제사칙연산 응용 문제 2. 알고리즘키워드 - 구현, 수학, 사칙연산 3. 코드 1234567891011121314151617181920212223242526272829303132333435363738394041424344#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 ll long long int main() { c..