Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
99383 | 刘弋 | 03大写字母转小写字母 | C++ | Wrong Answer | 0 MS | 272 KB | 160 | 2024-11-26 21:50:02 |
#include <iostream> using namespace std; int main() { long long a,b,c,d; cin >> a >> b >> c >> d; cout << (10*c+d)/(10*a+b); return 0; }
------Input------
I
------Answer-----
i
------Your output-----
20