結果

問題 No.457 (^^*)
ユーザー rickythetarickytheta
提出日時 2016-12-08 00:24:24
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 594 bytes
コンパイル時間 1,515 ms
コンパイル使用メモリ 157,668 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 02:15:47
合計ジャッジ時間 2,156 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
5,376 KB
testcase_19 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:16:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   16 |   scanf("%s",s);
      |   ~~~~~^~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef int _loop_int;
#define REP(i,n) for(_loop_int i=0;i<(_loop_int)(n);++i)

// O(n)

int dp[2][6][12525];
char s[12525];
char t[2][1252] = {"(*^^)", "(^^*)"};
int n;

int main(){
  scanf("%s",s);
  n = strlen(s);
  int ans[2] = {0,0};
  REP(i,n)REP(x,2)REP(j,5){
    if(t[x][j] == s[i]){
      if(j==0){
        dp[x][j+1][i+1] += 1;
      }else if(j==4){
        ans[x]++;
      }else{
        dp[x][j+1][i+1] += dp[x][j][i];
      }
    }else{
      dp[x][j][i+1] += dp[x][j][i];
    }
  }
  printf("%d %d\n",ans[0],ans[1]);
  return 0;
}
0