-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1011.js
71 lines (58 loc) · 1.53 KB
/
1011.js
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
var readline = require("readline");
var r = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
let input = [];
r.on("line", function (line) {
input.push(line);
}).on("close", function () {
main(input);
process.exit();
});
function main(input) {
const [T, ...testCases] = input;
for (let i = 0; i < T; i++){
const [start, end] = testCases[i].split(' ').map(_ => +_);
if(Math.sqrt(end - start) % 1 === 0){
console.log(2 * Math.sqrt(end-start) - 1);
continue;
}else{
bigPow = Math.pow(Math.ceil(Math.sqrt(end-start)), 2);
smallPow = Math.pow(Math.ceil(Math.sqrt(end-start)) - 1, 2) + 1;
if((bigPow+smallPow) / 2 <= end-start){
console.log(2 * Math.ceil(Math.sqrt(end-start)) - 1);
continue;
}else{
console.log(2 * Math.ceil(Math.sqrt(end-start)) - 2);
continue;
}
}
}
}
// 1 1 -> 1 번
// 2 1 1 -> 2번
// 3 1 1 1 -> 3번
// 4 1 2 1 -> 3번 2 + 1
// 5 1 2 1 1 -> 4번
// 6 1 2 2 1 -> 4번
// 7 1 2 3 2 1 -> 5번
// 8 1 2 2 2 1 -> 5번
// 9 1 2 3 2 1 -> 5번 3 + 2
// 10 1 2 2 2 2 1 -> 6번
// 11 1 2 3 2 2 1 -> 6번
// 12 1 2 3 3 2 1 -> 6번
// 13 1 2 3 3 2 1 1 -> 7번
// 14 1 2 3 3 2 2 1 -> 7번
// 15 1 2 3 3 3 2 1 -> 7번
// 16 1 2 3 4 3 2 1 -> 7번 4 + 3
// 17 1 2 3 4 3 2 1 1 -> 8번
// 18 1 2 3 4 4 3 2 1 -> 8번
// 19 1 2 3 4 4 3 2 1 -> 8번
// 20 -> 8
// 21 -> 9
// 22 -> 9
// 23 -> 9
// 24 -> 9
// 25 -> 9
//