// Divisibility
// Sample code to perform I/O:
process.stdin.resume();
process.stdin.setEncoding("utf-8");
var stdin_input = "";
process.stdin.on("data", function (input) {
stdin_input += input; // Reading input from STDIN
});
process.stdin.on("end", function () {
main(stdin_input);
});
function main(input) {
var data= input.toString().split("\n");
process.stdout.write(divisible(data[1], parseInt(data[0])));
// Writing output to STDOUT
}
// Warning: Printing unwanted or ill-formatted data to output will cause the test cases to fail
// Write your code here
// Sample code to perform I/O:
//Enter your code here
function divisible(input,n) {
const arr = input.split(" ");
let number="";
for (let i=0; i<n; i++) {
number=number+arr[i].substr(arr[i].length-1,1);
}
if (parseInt(number.substr(number.length-1,1))!=0) {
return "No";
} else { return "Yes";}
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter