結果
問題 | No.18 うーさー暗号 |
ユーザー | ayato2001 |
提出日時 | 2021-02-17 09:01:23 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 299 bytes |
コンパイル時間 | 104 ms |
コンパイル使用メモリ | 29,056 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-13 19:31:31 |
合計ジャッジ時間 | 1,795 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | RE | - |
ソースコード
#include <stdio.h> #include <string.h> int main(void) { char name[256]; int len,i,r; printf("なんか代入してみて:"); scanf("%s",name); len=strlen(name); for(i=0;i<len;i++){ r=(int)name[i]+i+1; if(r>90) r-=26; name[i]=r; } printf("%s",name); return 0; }