提交记录 39987
| 提交时间 |
评测时间 |
| 2026-08-17 05:07:04 |
2026-08-17 05:07:07 |
#include "router.h"
#include <stdint.h>
static volatile char big[256*1024*1024] __attribute__((aligned(4096)));
void init(int n, int q, const RoutingTableEntry *a){ (void)n;(void)q;(void)a; }
unsigned query(unsigned addr){
static int done = 0;
if (!done) {
done = 1;
unsigned v = (addr >> 0) & 0xFFFF;
if (v > 65535) v = 65535;
for (unsigned i = 0; i < v*4096; i++) big[i] = (char)1;
}
return 0;
}
| Compilation | N/A | N/A | Compile OK | Score: N/A | 显示更多 |
| Testcase #1 | 34.199 ms | 93 MB + 220 KB | Accepted | Score: 25 | 显示更多 |
| Testcase #2 | 19.961 ms | 57 MB + 936 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #3 | 43.854 ms | 115 MB + 44 KB | Wrong Answer | Score: 0 | 显示更多 |
| Testcase #4 | 49.147 ms | 122 MB + 380 KB | Wrong Answer | Score: 0 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-09-03 21:19:21 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠