ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 백준 15726번: 이칙연산
    사칙연산(Arithmetic Operation) 2018. 7. 29. 11:29
    반응형

    https://www.acmicpc.net/problem/15726


    1. 문제

    곱셈과 나눗셈을 각 1회 사용하여 가장 큰 값을 출력하는 문제


    2. 알고리즘

    키워드 - 사칙연산, 부동소수점


    * 자료형 범위 조심 할 것


    3. 코드


    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    #include <iostream>
    #include <sstream>
    #include <string>
    #include <algorithm>
    #include <functional>
    #include <vector>
    #include <list>
    #include <queue>
    #include <deque>
    #include <map>
    #include <set>
    #include <stack>
    #include <math.h>
    #include <memory.h>
     
    using namespace std;
     
    #define MAX_SIZE 100
    #define INF 0x7fffffff
    #define CENDL "\n"
    #define ll long long
     
    double max(double a,double b)
    {
        if(a>b)return a;
        else return b;
    }
     
    int main() {
     
        //cin.tie(0);
        //std::ios::sync_with_stdio(false);
     
        vector<ll> arr(3);
     
        for (int i=0; i<3; i++) {
            cin >> arr[i];
        }
     
        printf("%lld",(long long)max((double) arr[0* arr[1/ arr[2],(double)arr[0/ arr[1* arr[2]));
     
        return 0;
    }
    cs

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    #include <iostream>
    #include <sstream>
    #include <string>
    #include <algorithm>
    #include <functional>
    #include <vector>
    #include <list>
    #include <queue>
    #include <deque>
    #include <map>
    #include <set>
    #include <stack>
    #include <math.h>
    #include <memory.h>
     
    using namespace std;
     
    #define MAX_SIZE 100
    #define INF 0x7fffffff
    #define CENDL "\n"
    #define ll long long
     
    int main() {
     
        cin.tie(0);
        std::ios::sync_with_stdio(false);
     
        vector<ll> arr(3);
     
        for (int i=0; i<3; i++) {
            cin >> arr[i];
        }
        
        ll sol_a = (double)arr[0* arr[1/ arr[2];
        ll sol_b = (double)arr[0/ arr[1* arr[2];
     
        cout << max(sol_a, sol_b) << CENDL;
     
        return 0;
    }
    cs

    반응형

    댓글

Designed by Tistory.