結果
問題 | No.18 うーさー暗号 |
ユーザー | tsuishi |
提出日時 | 2021-01-08 13:25:52 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 425 bytes |
コンパイル時間 | 181 ms |
コンパイル使用メモリ | 29,952 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-04-27 15:18:47 |
合計ジャッジ時間 | 903 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 1 ms
6,940 KB |
コンパイルメッセージ
main.c: In function 'main': main.c:2:62: warning: implicit declaration of function 'strchr' [-Wimplicit-function-declaration] 2 | #define INPUT(str) do{char *p;fgets(str,sizeof(str),stdin);p=strchr(str,'\n');if(p)*p='\0';}while(0) | ^~~~~~ main.c:9:9: note: in expansion of macro 'INPUT' 9 | INPUT(str); | ^~~~~ main.c:2:1: note: include '<string.h>' or provide a declaration of 'strchr' 1 | #include <stdio.h> +++ |+#include <string.h> 2 | #define INPUT(str) do{char *p;fgets(str,sizeof(str),stdin);p=strchr(str,'\n');if(p)*p='\0';}while(0) main.c:2:62: warning: incompatible implicit declaration of built-in function 'strchr' [-Wbuiltin-declaration-mismatch] 2 | #define INPUT(str) do{char *p;fgets(str,sizeof(str),stdin);p=strchr(str,'\n');if(p)*p='\0';}while(0) | ^~~~~~ main.c:9:9: note: in expansion of macro 'INPUT' 9 | INPUT(str); | ^~~~~ main.c:2:62: note: include '<string.h>' or provide a declaration of 'strchr' 2 | #define INPUT(str) do{char *p;fgets(str,sizeof(str),stdin);p=strchr(str,'\n');if(p)*p='\0';}while(0) | ^~~~~~ main.c:9:9: note: in expansion of macro 'INPUT' 9 | INPUT(str); | ^~~~~
ソースコード
#include <stdio.h> #define INPUT(str) do{char *p;fgets(str,sizeof(str),stdin);p=strchr(str,'\n');if(p)*p='\0';}while(0) #define REP1(a,b) for(int a=1;a<=(b);++a) #define INPBUF (1024+3) int main(void) { char str[INPBUF]; int lngt; // ready INPUT(str); // start for(lngt=0;str[lngt] != '\0';++lngt); REP1(i,lngt) { str[i-1] = ( ((str[i-1] - 'A' ) - i % 26 + 26 ) % 26 + 'A' ); } printf("%s\n", str ); return 0; }