Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
74079 王籽易 火柴棒 C++ 解答错误 50 0 MS 252 KB 423 2023-05-20 15:18:38

Tests(5/10):


#include<bits/stdc++.h> using namespace std; int n; int ds[101]={0,0,1,7,4,2,0,8,10,18,22,20,28,80,88,108,188,228,208}; void b(int x){ if(x==3) cout<<'7'; else if(x%2==1){ cout<<'7'; for(int i=1;i<=(x-3)/2;i++){ cout<<'1'; } } else{ for(int i=1;i<=x/2;i++){ cout<<'1'; } } return; } void s(int x){ cout<<ds[x]; } int main(){ cin>>n; s(n); cout<<" "; b(n); return 0; }


测评信息: