#13938: c / c++ answer


alexrobotvm0@gmail.com (黃子軒)

學校 : 國立內壢高級中學
編號 : 70522
來源 : [42.72.2.156]
最後登入時間 :
2021-10-23 21:15:50
d127. 二、牧场面积 -- NOI冬令营 | From: [114.36.217.54] | 發表日期 : 2018-05-18 18:15

比較簡單的寫法

 

#include <stdio.h>

using namespace std;

int main() {
int num = 0;

while (scanf("%d", &num) != EOF) {
long long temp = 0;

for (temp = 1; temp < (num / 2) - temp; temp++);
printf("%lld\n", temp * ((num / 2) - temp));
}

return 0;
}

 
ZeroJudge Forum