QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#223626#1. I/O Testcyc0011.0E-5 0ms3584kbC++23691b2023-10-22 14:25:452023-10-22 14:25:45

Judging History

你现在查看的是最新测评结果

  • [2023-10-22 14:25:45]
  • 评测
  • 测评结果:1.0E-5
  • 用时:0ms
  • 内存:3584kb
  • [2023-10-22 14:25:45]
  • 提交

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;
}

詳細信息

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