반응형
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
44
45
46
47
48
49
|
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
public class Main {
public static void main(String[] args) throws Exception{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
//혼자 접근을 하려 했지만 지속적인 실패로 인해 다른분거 참조!
//코드가 예술이네요...
//몇번째 숫자를 출력할지 결정하는 변수 n
int n = Integer.parseInt(br.readLine());
//첫번째행은 1/1, 두번째는 1/2, 2/1, 세번째는 3/1, 2/2, 1/3
//이런식으로 행마다 숫자가 하나씩 늘어난다
//규칙적으로 늘어나는 것은 등차수열이며, 등차수열 법칙을 젹용해본다
//몇번째 행을 결정하는 line
int line = 0;
//그 행까지 몇까지 숫자가 있는지 결정하는 cnt
int cnt = 0;
//cnt가 n보다 클때까지 돌린다
while (cnt < n) {
line++;
// System.out.println(cnt + " < " + n);
// System.out.println("line" + line);
//이렇게 등차수열 공식을 사용하면 해당 행에 총 몇개의 수가 있는지 확인 할 수 있다
cnt = line * (line + 1) / 2;
// System.out.println("cnt" + cnt + "\n");
}
//보다시피 지그재그 순으로 line이 짝수면 우측에서 좌측으로, 홀수면 좌측에서 우측으로 올라간다
//그래서 이프엘스
if(line % 2 == 0) {
int top = line - (cnt - n);
int bottom = 1 + (cnt - n);
} else {
int top = 1 + (cnt - n);
int bottom = line - (cnt - n);
}
//내려줍니다
}
}
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
|
반응형
'IT > 알고리즘' 카테고리의 다른 글
백준 8단계(10250) (0) | 2019.12.15 |
---|---|
백준 8단계(2869) (0) | 2019.12.15 |
백준 8단계(2292) (0) | 2019.12.14 |
백준 8단계(2839) (0) | 2019.12.14 |
백준 8단계(1712) (0) | 2019.12.10 |