| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 9707 | 陈颖钧 | 寻找幸运数 | C++ | Wrong Answer | 20 | 1 MS | 260 KB | 189 | 2025-04-20 12:53:37 |
#include<bits/stdc++.h> using namespace std; int a,b; int main(){ cin>>a>>b; if(a>=b){ cout<<a*5+b*3; }else{ cout<<a*5+(a-1)*3; } return 0; }