提交记录 29657
| 提交时间 |
评测时间 |
| 2026-08-12 00:47:19 |
2026-08-12 00:47:23 |
#ifndef DUCK_FASTIO_H
#define DUCK_FASTIO_H
typedef unsigned long duck_u64;
typedef long duck_i64;
typedef struct {
duck_u64 abi_version;
const char *stdin_ptr;
duck_u64 stdin_size;
char *stdout_ptr;
duck_u64 stdout_limit;
duck_u64 stdout_size;
char *stderr_ptr;
duck_u64 stderr_limit;
duck_u64 stderr_size;
const char *ib_ptr;
duck_u64 ib_limit;
char *ob_ptr;
duck_u64 ob_limit;
duck_u64 tsc_frequency;
} __attribute__((packed)) DuckInfo;
static __attribute__((always_inline)) inline DuckInfo *duck_info(long argc, char **argv) {
char **p = argv + argc + 1;
while (*p) ++p;
duck_u64 *aux = (duck_u64 *)(p + 1);
while (aux[0]) {
if (aux[0] == 0x6b637564UL) return (DuckInfo *)aux[1];
aux += 2;
}
return (DuckInfo *)0;
}
static __attribute__((always_inline)) inline duck_u64 duck_read_u64(const char **cursor) {
const char *p = *cursor;
while ((unsigned char)(*p - '0') > 9) ++p;
duck_u64 value = 0;
do {
value = value * 10 + (unsigned char)(*p - '0');
++p;
} while ((unsigned char)(*p - '0') <= 9);
*cursor = p;
return value;
}
static __attribute__((always_inline)) inline duck_i64 duck_read_i64(const char **cursor) {
const char *p = *cursor;
while (*p != '-' && (unsigned char)(*p - '0') > 9) ++p;
int negative = *p == '-';
p += negative;
duck_u64 value = 0;
do {
value = value * 10 + (unsigned char)(*p - '0');
++p;
} while ((unsigned char)(*p - '0') <= 9);
*cursor = p;
return negative ? -(duck_i64)value : (duck_i64)value;
}
static __attribute__((always_inline)) inline char *duck_write_u64(char *out, duck_u64 value) {
char tmp[24];
unsigned n = 0;
do {
tmp[n++] = (char)('0' + value % 10);
value /= 10;
} while (value);
do *out++ = tmp[--n]; while (n);
return out;
}
static __attribute__((always_inline)) inline char *duck_write_i64(char *out, duck_i64 value) {
if (value < 0) {
*out++ = '-';
return duck_write_u64(out, (duck_u64)(-value));
}
return duck_write_u64(out, (duck_u64)value);
}
static __attribute__((always_inline, noreturn)) inline void duck_exit(void) {
__asm__ volatile("mov $60,%%eax;xor %%edi,%%edi;syscall" ::: "rax", "rdi", "rcx", "r11", "memory");
__builtin_unreachable();
}
#endif
__attribute__((noreturn))
void __libc_start_main(void *unused, long argc, char **argv) {
(void)unused;
DuckInfo *info = duck_info(argc, argv);
const char *input = info->stdin_ptr;
duck_i64 a = (duck_i64)duck_read_u64(&input);
duck_i64 b = (duck_i64)duck_read_u64(&input);
char *out = info->stdout_ptr;
out = duck_write_i64(out, a * b - a - b);
*out++ = '\n';
info->stdout_size = (duck_u64)(out - info->stdout_ptr);
duck_exit();
}
int main(void) {}
| Compilation | N/A | N/A | Compile OK | Score: N/A | 显示更多 |
| Testcase #1 | 2.34 us | 8 KB | Accepted | Score: 5 | 显示更多 |
| Testcase #2 | 2.55 us | 8 KB | Accepted | Score: 5 | 显示更多 |
| Testcase #3 | 2.5 us | 8 KB | Accepted | Score: 5 | 显示更多 |
| Testcase #4 | 2.77 us | 8 KB | Accepted | Score: 5 | 显示更多 |
| Testcase #5 | 2.7 us | 8 KB | Accepted | Score: 5 | 显示更多 |
| Testcase #6 | 2.76 us | 8 KB | Accepted | Score: 5 | 显示更多 |
| Testcase #7 | 2.72 us | 8 KB | Accepted | Score: 5 | 显示更多 |
| Testcase #8 | 2.84 us | 8 KB | Accepted | Score: 5 | 显示更多 |
| Testcase #9 | 2.84 us | 8 KB | Accepted | Score: 5 | 显示更多 |
| Testcase #10 | 2.41 us | 8 KB | Accepted | Score: 5 | 显示更多 |
| Testcase #11 | 2.39 us | 8 KB | Accepted | Score: 5 | 显示更多 |
| Testcase #12 | 2.44 us | 8 KB | Accepted | Score: 5 | 显示更多 |
| Testcase #13 | 2.73 us | 8 KB | Accepted | Score: 5 | 显示更多 |
| Testcase #14 | 3.1 us | 8 KB | Accepted | Score: 5 | 显示更多 |
| Testcase #15 | 2.67 us | 8 KB | Accepted | Score: 5 | 显示更多 |
| Testcase #16 | 2.72 us | 8 KB | Accepted | Score: 5 | 显示更多 |
| Testcase #17 | 2.47 us | 8 KB | Accepted | Score: 5 | 显示更多 |
| Testcase #18 | 2.73 us | 8 KB | Accepted | Score: 5 | 显示更多 |
| Testcase #19 | 2.46 us | 8 KB | Accepted | Score: 5 | 显示更多 |
| Testcase #20 | 2.76 us | 8 KB | Accepted | Score: 5 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-08-18 17:27:55 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠