結果

問題 No.18 うーさー暗号
ユーザー tsukacchantsukacchan
提出日時 2016-03-23 12:09:33
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 230 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 20,096 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-09 19:18:51
合計ジャッジ時間 732 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 WA -
testcase_02 AC 1 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>

int main(void){

int c;
int i=1;
int temp;

while((c=getchar())!='\n')
{
temp=i;
temp%=26;

if((c-65)-temp>=0)
printf("%c",c-temp);
else
printf("%c",90-(temp-1));

i++;
    
}
    
printf("\n");
   
return 0;

}
0