結果
問題 | No.739 大事なことなので2度言います |
ユーザー | fel1_X_925 |
提出日時 | 2018-10-06 12:01:36 |
言語 | C (gcc 12.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 516 bytes |
コンパイル時間 | 138 ms |
コンパイル使用メモリ | 28,800 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-12 13:45:15 |
合計ジャッジ時間 | 2,682 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
コンパイルメッセージ
main.c: In function 'main': main.c:8:21: warning: comparison between pointer and integer 8 | for(i = 0; c[i] != "\0"; i++){ | ^~
ソースコード
#include <stdio.h> int main(void) { int i,j; int h; char c[41]; scanf("%s", c); for(i = 0; c[i] != "\0"; i++){ } if((i%2) == 1){ printf("NO"); return(0); } if((i % 2) == 0){ j = i / 2; h = j; while(i < j){ if(c[i] != c[h]){ printf("NO"); return(0); } else{ i++; h++; } } printf("YES"); return(0); } }