Algorithm
- μ€λ -
λ¬Έμ
μ°λκ° μ£Όμ΄μ‘μ λ, μ€λ μ΄λ©΄ 1, μλλ©΄ 0μ μΆλ ₯νλ νλ‘κ·Έλ¨μ μμ±νμμ€.
μ€λ μ μ°λκ° 4μ λ°°μμ΄λ©΄μ, 100μ λ°°μκ° μλ λ λλ 400μ λ°°μμΌ λμ΄λ€.
μλ₯Ό λ€μ΄, 2012λ μ 4μ λ°°μμ΄λ©΄μ 100μ λ°°μκ° μλλΌμ μ€λ μ΄λ€. 1900λ μ 100μ λ°°μμ΄κ³ 400μ λ°°μλ μλκΈ° λλ¬Έμ μ€λ μ΄ μλλ€. νμ§λ§, 2000λ μ 400μ λ°°μμ΄κΈ° λλ¬Έμ μ€λ μ΄λ€.
μ μΆλ ₯ μμ
λ¬Έμ νκΈ°
let fs = require("fs");
let input = fs.readFileSync('/dev/stdin').toString().split(' ');
if((input[0] % 4 === 0 && input[0] % 100 !== 0) || input[0] % 400 === 0) {
console.log(1);
}
else {
console.log(0);
}
λ°μν
'κ°μΈκ³΅λΆ > Algorithm' μΉ΄ν κ³ λ¦¬μ λ€λ₯Έ κΈ
[λ°±μ€][Node.js] 2775λ² : λΆλ νμ₯μ΄ λ ν μΌ (0) | 2021.09.24 |
---|---|
[λ°±μ€][Node.js] 2754λ² : νμ κ³μ° (0) | 2021.09.23 |
[λ°±μ€][Node.js] 2750λ² : μ μ λ ¬νκΈ° (0) | 2021.09.20 |
[λ°±μ€][Node.js] 2748λ² : νΌλ³΄λμΉ μ 2 (0) | 2021.09.18 |
[λ°±μ€][Node.js] 2747λ² : νΌλ³΄λμΉ μ (0) | 2021.09.17 |
λκΈ