提交记录 12489
| 提交时间 |
评测时间 |
| 2020-04-14 08:23:45 |
2020-08-01 02:55:39 |
namespace io {
template <typename T> inline void read(T & _x) {
int f = 0, ch; _x = 0;
while(!isdigit(ch = getchar())) f |= ch == '-';
while(isdigit(ch)) _x = _x * 10 + ch - '0', ch = getchar();
if(f) _x = -_x;
}
template <typename T, typename ... Args> inline void read(T &_f, Args& ... args) {
read(_f), read(args ...);
}
inline void _deal(char ch) { putchar(ch); }
template <typename T> inline void _deal(T _x) {
if (_x < 0) putchar('-'), _x = -_x;
if (_x > 9) _deal(_x / 10);
putchar(_x % 10 + '0');
}
inline void write() {}
template <typename T, typename ... Args> inline void write(T _f, Args ... args) {
_deal(_f), write(args...);
}
}
int plus(io::read(a,b)) {
io::write( a + b);
}
| Compilation | N/A | N/A | Compile Error | Score: N/A | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-03-26 00:21:25 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠