| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 119550 | 张暄浩 | [在线测评解答教程] A+B Problem | C++ | Wrong Answer | 1 MS | 268 KB | 144 | 2025-05-17 18:15:04 |
#include<iostream> using namespace std; int main(){ int n; cin>>n; n=n*1000+n; n=n/7; n=n/11; n=n/13; cout<<n; return 0; }
------Input------
87 93
------Answer-----
180
------Your output-----
87