首页 > 其他 > 详细

Codeforces gym102222 C. Caesar Cipher 签到

时间:2019-08-31 23:27:54      阅读:89      评论:0      收藏:0      [点我收藏+]

题意:

给定一对用凯撒密码加密的明文和密文,再给你一个密文,让你解密出明文,保证有唯一解。

题解:

对凯撒密码的已知明文攻击,签到题。

#include<iostream>
using namespace std;
char c1[100],c2[100],c3[100];
int t;
int main(){
    int __;
    scanf("%d",&__);
    for(int _=1;_<=__;_++){
        int n,m;
        scanf("%d %d",&n,&m);
        scanf("%s %s",c1,c2);
        t=(c1[0]-c2[0]+26)%26;
        scanf("%s",c3);
        printf("Case #%d: ",_);
        for(int i=0;i<m;i++){
            printf("%c",(c3[i]-A+t)%26+A);
        }
        printf("\n");
    }
    return 0;
}

 

Codeforces gym102222 C. Caesar Cipher 签到

原文:https://www.cnblogs.com/isakovsky/p/11440840.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!