一、学Java的容器部分并完成五道练习题,之后就可以开始学技术内容了。
二、cf刷题,最低170道,然后模拟参与一场竞赛。
在这里恭喜一下自己,第一次做出四道题,上大分。
#include<bits/stdc++.h> #define int long long #define x first #define y second #define endl '\n' #define pq priority_queue using namespace std; typedef pair<int,int> pii; int f(int x) { for(int i=1;i<=26;i++) { bool st=false; for(int j=1;j<=x;j++) { if(x%j==0) { if(j%i==0)st=true; } } if(!st)return i; } } void solve() { int n;cin>>n; int a=f(n); string ans=""; for(int i=0;i<a;i++) { ans+='a'+i; } for(int i=0;i<n/a;i++) { cout<<ans; } for(int i=0;i<n%a;i++) { cout<<ans[i]; } cout<<endl; } signed main() { ios::sync_with_stdio(false);cin.tie(0);cout.tie(0); int t;cin>>t; while(t--) { solve(); } return 0; }