結果

問題 No.18 うーさー暗号
ユーザー funakoshi
提出日時 2019-08-07 10:59:06
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 377 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 28,672 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-18 18:15:06
合計ジャッジ時間 623 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 3 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main(void)
{
    int move = 1;
    char str[2000];
    scanf("%s",str);
    for(int i=0;i<strlen(str);i++)
    {
        str[i]=str[i]-move;
        move++;
        if(move>26)
        {
            move=1;
        }
        if(str[i]==64)
        {
            str[i]=90;
        }
    }
    printf("%s",str);
}
0