QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#223626 | #1. I/O Test | cyc001 | 1.0E-5 | 0ms | 3584kb | C++23 | 691b | 2023-10-22 14:25:45 | 2023-10-22 14:25:45 |
Judging History
config.txt
1 1
input_test
#include <stdint.h>
#include <iostream>
#include <cpuid.h>
static void cpuid(uint32_t func, uint32_t sub, uint32_t data[4]) {
__cpuid_count(func, sub, data[0], data[1], data[2], data[3]);
}
int main() {
uint32_t data[4];
char str[48];
for(int i = 0; i < 3; ++i) {
cpuid(0x80000002 + i, 0, data);
for(int j = 0; j < 4; ++j)
reinterpret_cast<uint32_t*>(str)[i * 4 + j] = data[j];
}
std::cout << str;
}
output_test
#include<bits/stdc++.h>
#define cir(i,a,b) for(int i=a;i<b;++i)
using namespace std;
int main(){
ios::sync_with_stdio(false),cin.tie(0);
int n;cin>>n;
cir(i,0,n) cout<<"114514666 ";
cout<<'\n';
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3584kb
input:
1 312003226
output:
Intel(R) Xeon(R) Platinum 8370C CPU @ 2.80GHz
result:
wrong output format Expected integer, but "Intel(R)" found
Subtask #2:
score: 1e-05
Acceptable Answer
Test #2:
score: 1e-05
Acceptable Answer
time: 0ms
memory: 3380kb
input:
1
output:
114514666
result:
points 0.00000010 output test passed