Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
149416 李朋秦 年龄问题 C++ Time Limit Exceeded 1000 MS 248 KB 151 2026-03-12 17:42:02

Tests(0/1):


Code:

#include<bits/stdc++.h> using namespace std; int sum(int x){ if(x==18){ return x; }sum(x); } int main(){ cout<<sum(10); return 0; }