码迷,mamicode.com
首页 > 其他好文 > 详细

CF 999B. Reversing Encryption【模拟/string reverse】

时间:2018-06-23 01:26:55      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:put   namespace   字符   1.0   字符串   reverse   space   #define   Fix   

【链接】:CF
【代码】:

#include<bits/stdc++.h>
#define PI acos(-1.0)
#define pb push_back
#define F first
#define S second
#define debug puts
#define setp cout << fixed << setprecision(3)
#define FAST_IO ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
using namespace std;
typedef long long ll;
const int N=3e5+5;
const int MOD=1e9+7;
const ll INF=1e18+8;
int n,k;
int a[N];
/*
给一个长度为n的字符串,经过他的因子个数的几次翻转,让你求最初的字符串。
*/
int main()
{
    FAST_IO
    while(cin>>n)
    {
        string s;
        cin>>s;
        for(int i=2;i<=n;i++)
        {
            if(n%i==0)
                reverse(s.begin(),s.begin()+i);
        }
        cout<<s<<endl;
    }
}
/*
10
rocesfedoc
codeforces

16
plmaetwoxesisiht
thisisexampletwo

*/

CF 999B. Reversing Encryption【模拟/string reverse】

标签:put   namespace   字符   1.0   字符串   reverse   space   #define   Fix   

原文地址:https://www.cnblogs.com/Roni-i/p/9215986.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!