| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 130716 | 任紫谦 | [在线测评解答教程] A+B Problem | C++ | Wrong Answer | 1 MS | 268 KB | 259 | 2025-09-14 18:35:38 |
#include<iostream> using namespace std; int main(){ int a,count=0; cin>>a; for(int i=0;i<=a;i++){ for(int j=0;j<=a;j++){ if(i*j==a){ count++; } } } if(count%2==0){ cout<<count/2; }else cout<<count/2+1; return 0; }
------Input------
87 93
------Answer-----
180
------Your output-----
2