| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 138590 | 李昱龙 | 13投资金额 | C++ | Wrong Answer | 0 MS | 268 KB | 161 | 2025-11-28 22:08:43 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; scanf("%d",&n); double a = n*1.2; printf("%.0lf",a); return 0; }
------Input------
92
------Answer-----
3464
------Your output-----
110