提交记录 27968


用户 题目 状态 得分 用时 内存 语言 代码长度
Running_a_way test. 自定义测试 Accepted 100 37.23 us 32 KB C++14 670 B
提交时间 评测时间
2025-02-25 21:04:14 2025-02-25 21:04:15
#include <algorithm>
#include <iostream>
#include <cstdio>
using namespace std;

#define il inline
#define re register
#define ll long long
#define rep(i, s, t) for(int i = s; i <= t; i++)
#define per(i, t, s) for(int i = t; i >= s; i--)

il ll rd() {
    re int x = 0, f = 1;
    re char ch = getchar();
    while(!isdigit(ch)) {if(ch == '-') f = -f; ch = getchar();}
    while(isdigit(ch)) {x = x * 10 + ch - '0'; ch = getchar();}
    return x * f;
}
template <typename T> void chkmin (T & a, T const& b)  {if(a > b) a = b;} 
template <typename T> void chkmax (T & a, T const& b)  {if(a < b) a = b;}

void solve() {
    
}

signed main() {
    solve();
    return 0;
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #137.23 us32 KBAcceptedScore: 100


Judge Duck Online | 评测鸭在线
Server Time: 2025-04-03 19:35:28 | Loaded in 0 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠