提交记录 15084


用户 题目 状态 得分 用时 内存 语言 代码长度
yangqianrui test. 自定义测试 Time Limit Exceeded 0 1 s 36 KB C++ 452 B
提交时间 评测时间
2020-11-21 16:33:01 2023-09-03 19:41:23
#include <bits/stdc++.h>
using namespace std;
#define int long long
int re() {
    int ret = 0, f = 1;
    char ch = getchar();
    while (!isdigit(ch)) f = (ch == '-') ? -f : f, ch = getchar();
    while (isdigit(ch)) ret = ret * 10 + ch - '0', ch = getchar();
    return ret * f;
}

int n, a[100000];
signed main() {
    n = re();
    for (int i = 1; i <= n; ++i) a[i] = re();
    for (int i = 1; i <= n; ++i) printf("%lld\n", a[i]);
    return 0;
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #11 s36 KBTime Limit ExceededScore: 0


Judge Duck Online | 评测鸭在线
Server Time: 2024-04-26 16:45:51 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用