想請教下列程式哪裡有錯
在Ideone 上可以正常跑,邏輯應該沒問題
而記憶體算起來也是1.2MB上下
和已經通過的大佬們差不多,我想方法本身應該是對的
但提交後一直吃RE⋯⋯
教過幾次測試後,發現在宣告時沒問題
但開始讀測資時就會RE了,請問是為什麼 (. .`)
/14771992_a561/code_14771992.exe: error while loading shared libraries: libc.so.6: failed to map segment from shared object
#include <stdio.h>
#include <bitset>
std::bitset<10000000> b;
int main() {
int n;
scanf("%d", &n);
while (n--) {
int t;
scanf("%d", &t);
b.set(t);
}
int j = 0;
for (int i = 0; i < 10000000; i++) {
if (b[i] && !(j++ % 10)) {
printf("%d ", i);
}
}
return 0;
}