QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#282769 | #1. I/O Test | ucup-team1769 | 100 | 426ms | 3580kb | C++20 | 465b | 2023-12-13 01:12:10 | 2023-12-13 01:12:11 |
Judging History
config.txt
10000000 10000000
input_test
#include <bits/stdc++.h>
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
i64 ans = 0;
for (int i = 0; i < 10000000; i++) {
int x;
std::cin >> x;
ans += x;
}
std::cout << ans << "\n";
}
output_test
#include <bits/stdc++.h>
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
int x = 100000000;
for (int i = 0; i < 10000000; i++) {
std::cout << x + i << " \n"[i == 999999];
}
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 0
input_test Judgement Failed
Test #1:
score: 0
input_test Judgement Failed
input:
10000000 788242533 684958054 356023701 870673385 741649539 105509578 905424984 265471690 505790199 314280644 965832444 288388987 717806881 581382545 162057350 684643757 221216562 365287863 403399154 923865064 892768341 375717279 686159417 278408181 431996569 947351751 710189245 355733531 797725157 5...
output:
result:
Subtask #2:
score: 100
Accepted
Test #2:
score: 100
Accepted
time: 426ms
memory: 3580kb
input:
10000000
output:
100000000 100000001 100000002 100000003 100000004 100000005 100000006 100000007 100000008 100000009 100000010 100000011 100000012 100000013 100000014 100000015 100000016 100000017 100000018 100000019 100000020 100000021 100000022 100000023 100000024 100000025 100000026 100000027 100000028 100000029 ...
result:
points 1.0 output test passed