結果

問題 No.2201 p@$$w0rd
ユーザー hatsuka_iwahatsuka_iwa
提出日時 2023-04-08 03:19:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 407 bytes
コンパイル時間 1,850 ms
コンパイル使用メモリ 165,256 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-14 04:05:59
合計ジャッジ時間 2,785 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 WA -
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 WA -
testcase_11 AC 2 ms
6,944 KB
testcase_12 WA -
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 WA -
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
 
int main() {
  string S; cin >> S;
  int LO = 0, AS = 0;

  auto P = [](auto P, int N) -> int {
    if (N == 0) return 1;
    int T = P(P, N / 2);
    if (N % 2 == 0) return T * T;
    return T * T * 2;
  };

  for (char C : S) {
    if (C == 'l' || C == 'o') LO++;
    if (C == 'a' || C == 's') AS++;
  }

  cout << (P(P, LO) - 1) * (P(P, AS) - 1) << endl;
}
0