結果

問題 No.457 (^^*)
ユーザー rickythetarickytheta
提出日時 2016-12-08 00:31:06
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 645 bytes
コンパイル時間 1,214 ms
コンパイル使用メモリ 158,624 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 02:17:48
合計ジャッジ時間 1,910 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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] += dp[x][j][i];
        dp[x][j][i+1] += dp[x][j][i];
      }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[1],ans[0]);
  return 0;
}
0