Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
138960 陈彦霖 02买礼物 C++ Accepted 0 MS 264 KB 156 2025-11-30 13:01:44

Tests(1/1):


Code:

#include <bits/stdc++.h> using namespace std; int main() { int a = 1000; int b = 220; int c = 4; int d = a - b * c; cout << d; return 0; }