Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
148141 吴昊 小明养猪的故事 C++ Wrong Answer 1 MS 272 KB 259 2026-02-09 17:34:09

Tests(0/1):


Code:

#include<bits/stdc++.h> using namespace std; int a1(int n){ int b=1,c=0; return n; } int main(){ int T=0; cin>>T; for(int i=1;i<=T;i++){ int N=0; cin>>N; cout<<a1(N); } return 0; }


Run Info:

------Input------
17 1 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
------Answer-----
1 5 8 13 21 34 55 89 144 233 377 610 987 1597 2584 4181 6765
------Your output-----
145678910111213141516171819