QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#127207 | #6634. Central Subset | Ethan_xu# | WA | 1154ms | 7080kb | C++20 | 351b | 2023-07-19 14:05:53 | 2023-07-19 14:05:57 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std ;
int main()
{
ios::sync_with_stdio(false) ;
cin.tie(0) ;
const int up = 1e6 ;
vector<int> c(up + 1 , 0) ;
for(int i = 2 ; i <= up ; i ++)
for(int j = 1 ; j * j <= i ; j ++)
c[i] = min(c[i] , c[j] + c[(i + j - 1) / j]) ;
return 0 ;
}
/*
*/
詳細信息
Test #1:
score: 0
Wrong Answer
time: 1154ms
memory: 7080kb
input:
2 4 3 1 2 2 3 3 4 6 7 1 2 2 3 3 1 1 4 4 5 5 6 6 4
output:
result:
wrong output format Unexpected end of file - int32 expected (test case 1)