fork download
  1. # include <stdio.h>
  2.  
  3. int isPalindrome(char s[]){
  4. int i=0, j;
  5. for(j=0;s[j+1]!='\0';j++);
  6. while(i<=j){
  7. if(s[i++]!=s[j--]) return 0;
  8. }
  9. return 1;
  10. }
  11.  
  12. int main(){
  13. char s[100];
  14. scanf("%s",s);
  15. printf("%s -> %d\n",s,isPalindrome(s));
  16. return 0;
  17. }
  18.  
  19. /*二次元malloc 7XLBnd
  20.  線形探索https://i...content-available-to-author-only...e.com/8XKMFi
  21.  
  22.  
  23.  挿入ソートhttps://i...content-available-to-author-only...e.com/0GiVoG
  24.  ソート済み線形リスト M1ddnV
  25.  
  26. 文字数count gYvNOl
  27.  
  28.   Copy dSxAE8
  29.   Compare 236Kt1
  30.   Connect fmvJAm
  31.   大文字sTKHkh
  32. 優先度付きキュー IHPDo9
  33.  
  34. https://i...content-available-to-author-only...e.com/X8gtNS
  35.  
  36.  
  37. */
Success #stdin #stdout 0s 5292KB
stdin
repeper
stdout
repeper -> 1