gpt4 book ai didi

pset 1A 上的 codeforces 运行时错误

转载 作者:行者123 更新时间:2023-11-30 15:00:15 26 4
gpt4 key购买 nike

我正在尝试解决problem 1A on codeforces

但我不断收到测试:#1,时间:0 毫秒,内存:1828 KB,退出代码:1,检查器退出代码:0,结论:RUNTIME_ERROR你可以查看我的条目here并在下面找到我的代码,我尝试在本地运行该程序,它工作正常并且通过了网站上的测试用例

#include<stdio.h>
int calculateSquare(int n , int m , int a){
int length=0;
int width = 0;
if(n%a != 0){
length = (n/a)+1 ;
}
else{
length = n/a ;
}
if(m%a != 0){
width = (m/a)+1 ;
}
else{
width = m/a ;
}

return length*width ;


}
void main(){
int n,m,a ;

scanf("%d %d %d",&n,&m,&a);
int output = calculateSquare(n,m,a);
printf("%d",output);
}

最佳答案

  • intcalculateSquare(int n, int m, int a)

返回类型为int,返回值为length*width

在最坏的情况下,a 将为 1nm 将为 10< support>9如问题所述

Input

The input contains three positive integer numbers in the first line: n,  m and a (1 ≤  n, m, a ≤ 109).

因此返回类型 int 无法保存这种情况下的返回值。

如果编译符合C99标准,最好使用long long int

关于pset 1A 上的 codeforces 运行时错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42239170/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com