提交记录 2862
| 提交时间 |
评测时间 |
| 2018-06-30 11:37:03 |
2020-07-31 21:07:47 |
#include <stdio.h>
inline int getint() {
int x = 0;
char c = getchar();
while (c <= 32) c = getchar();
int f = 1;
if (c == '-') f = -1, c = getchar();
while (c > 32) x = x * 10 + c - 48, c = getchar();
return x * f;
}
template <class T>
inline void _putint(T x) {
return x ? _putint(x / 10), putchar(48 + x % 10), void() : void();
}
template <class T>
inline void putint(T x) {
if (x < 0) return putchar('-'), putint(-x), void();
return x == 0 ? putchar('0'), void() : _putint(x), void();
}
namespace judgeduck {
extern char *stdout_content;
extern int stdout_size;
extern int stdout_max_size;
}
int main() {
int n = getint(); char s[999];
//while (n--) {
//int a = getint();
//int b = getint();
/*judgeduck::stdout_size += */sprintf(s, "%d\n", 2);
//}
return 0;
}
| Compilation | N/A | N/A | Compile OK | Score: N/A | 显示更多 |
| Testcase #1 | 8.18 us | 8 KB | Wrong Answer | Score: 0 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-04-19 17:41:24 | Loaded in 0 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠