結果
問題 | No.464 PPAP |
ユーザー | Yamyuki |
提出日時 | 2016-12-15 22:13:06 |
言語 | C90 (gcc 12.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 481 bytes |
コンパイル時間 | 317 ms |
コンパイル使用メモリ | 22,272 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-11-30 08:38:15 |
合計ジャッジ時間 | 16,769 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
10,496 KB |
testcase_01 | AC | 1 ms
6,400 KB |
testcase_02 | AC | 1 ms
10,496 KB |
testcase_03 | AC | 0 ms
6,400 KB |
testcase_04 | AC | 2 ms
10,496 KB |
testcase_05 | AC | 1 ms
6,528 KB |
testcase_06 | AC | 0 ms
8,232 KB |
testcase_07 | TLE | - |
testcase_08 | AC | 359 ms
6,528 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | TLE | - |
testcase_15 | AC | 0 ms
5,248 KB |
testcase_16 | AC | 1 ms
5,248 KB |
testcase_17 | AC | 0 ms
5,248 KB |
testcase_18 | AC | 0 ms
5,248 KB |
testcase_19 | AC | 1 ms
5,248 KB |
testcase_20 | AC | 0 ms
5,248 KB |
testcase_21 | AC | 0 ms
5,248 KB |
testcase_22 | AC | 0 ms
5,248 KB |
testcase_23 | AC | 1 ms
5,248 KB |
testcase_24 | AC | 1 ms
5,248 KB |
testcase_25 | AC | 1 ms
8,100 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:17:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 17 | scanf("%s",str); | ^~~~~~~~~~~~~~~
ソースコード
#include<stdio.h> #include<string.h> int check(char *str,int s,int e){ int w,i; w=(e-s+1)/2; for(i=0;i<w;i++){ if(str[s+i]!=str[e-i]) return 0; } return 1; } int main(){ char str[5001]; int n,i,j,k; long c=0; scanf("%s",str); n=strlen(str); for(i=0;i<n-3;i++){ if(check(str,0,i)){ for(j=i+1;j<n-2;j++){ if(check(str,i+1,j)){ for(k=n-1;k>j+1;k--){ if(check(str,k,n-1)){ c++; } } } } } } printf("%ld\n",c); return 0; }