| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 140494 | 刘柠锐 | [在线测评解答教程] A+B Problem | C++ | Wrong Answer | 0 MS | 268 KB | 157 | 2025-12-15 16:13:45 |
#include<iostream> using namespace std; int main(){ int n,s; cin>>n; for(int i=0;i<=n;i++){ if(i%7==0&&n%10==7){ s++; } } cout<<s; }
------Input------
87 93
------Answer-----
180
------Your output-----
4195077