input: 3 5 6
output: 1 1 0
Giải thích: 3, 5 là số nguyên tố in 1
6 không phải số nguyên tố in 0
function getRndInteger(min, max) {
return Math.floor(Math.random() * (max - min + 1) ) + min;
}
s = "";
for(var i = 1; i<=100000; i++){
var ii = getRndInteger(4294967296, 9007199254740992);
if(ii%2 && ii%3 && ii%5 && ii%7 && ii%13 && ii%17 && ii%23 && ii%31)
s += ii + "\n";
else
i--;
}
testnguyento.inp
xuất file testnguyento.out
): https://sv1.upfile.us/file/B7KBL8J2DT8J1ZG