문제
답 :
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int number= sc.nextInt(); int cnt=1; int temp=0; int lenght=10; for(int i=1;i<=number;i++) { if(i==lenght) { cnt++; lenght=lenght*10; } temp= temp+cnt; } System.out.println(temp); } }
'코딩테스트(백준)' 카테고리의 다른 글
[백준] 5063번: TGN -JAVA - 사좋배 공유 (0) | 2019.09.25 |
---|---|
[백준] 2798번: 블랙잭 -JAVA - 사좋배 공유 (0) | 2019.09.25 |
[백준] 4948번: 베르트랑 공준 -JAVA - 사좋배 공유 (0) | 2019.09.24 |
[백준] 2960번: 에라토스테네스의 체 -JAVA - 사좋배 공유 (0) | 2019.09.24 |
[백준] 10872번: 팩토리얼 -JAVA - 사좋배 공유 (0) | 2019.09.24 |