JN. 选择题-1200
选择题-1200
当前没有测试数据。
该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。
for(int i = 1; i <= n; i++){
int x = i;
while(x > 0){
x /= 10;
}
for(int j = 1; j <= 5; j++){
cnt++;
}
}
时间复杂度是? {{ select(1) }}
- O(n)
- O(n log n)
- O(n²)
- O(log n) 答案:B