Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
55284 | zhangweiran | 根据x值,求y值 | C++ | Accepted | 1 MS | 236 KB | 118 | 2024-11-04 21:02:29 |
#include<iostream> using namespace std; int main() { int x; cin>>x; cout<<(3*x-5); return 0; }