結果
| 問題 | No.1367 文字列門松 | 
| コンテスト | |
| ユーザー |  a01sa01to | 
| 提出日時 | 2025-03-09 00:51:20 | 
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 548 bytes | 
| コンパイル時間 | 3,388 ms | 
| コンパイル使用メモリ | 275,080 KB | 
| 実行使用メモリ | 8,608 KB | 
| 最終ジャッジ日時 | 2025-03-09 00:51:25 | 
| 合計ジャッジ時間 | 4,684 ms | 
| ジャッジサーバーID (参考情報) | judge3 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 20 WA * 7 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
  #include "settings/debug.cpp"
#else
  #define Debug(...) void(0)
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;
int main() {
  cin.tie(nullptr)->sync_with_stdio(false);
  string s;
  cin >> s;
  vector<int> cnt(26);
  for (char c : s) cnt[c - 'a']++;
  string t = "kadomatsu";
  for (char c : t) cnt[c - 'a']--;
  bool ok = true;
  rep(i, 26) if (cnt[i] > 0) ok = false;
  cout << (ok ? "Yes" : "No") << '\n';
  return 0;
}
            
            
            
        