아직은 정체성이 없는 블로그

[SWEA][D3][c++] 6718. 희성이의 원근법 본문

알고리즘 역량테스트 문제/SWEA

[SWEA][D3][c++] 6718. 희성이의 원근법

coooding 2020. 7. 21. 01:01

문제 

6718. 희성이의 원근법

 

문제 링크

https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWd7qcdatpEDFAUh

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

풀이 과정

난이도 반영이 잘못된 문제인것 같다.

간단히 범위에 맞는 조건문을 넣고 출력하면 된다.

 

코드

#include<iostream>
using namespace std;
int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    int T,n;
    cin>>T;
    for(int test_case = 1; test_case <= T; ++test_case)
    {
        cin >> n;
        cout<<"#"<<test_case<<" ";
        if(n<100)
            cout<<"0\n";
        else if(n<1000)
            cout<<"1\n";
        else if(n<10000)
            cout<<"2\n";
        else if(n<100000)
            cout<<"3\n";
        else if(n<1000000)
            cout<<"4\n";
        else
            cout<<"5\n";
    }
    return 0;
}
Comments