結果
問題 | No.1367 文字列門松 |
ユーザー | hatsuka_iwa |
提出日時 | 2021-03-01 05:33:55 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 378 bytes |
コンパイル時間 | 1,706 ms |
コンパイル使用メモリ | 167,756 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-03 00:45:51 |
合計ジャッジ時間 | 2,548 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 27 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { string S, kdmt = "kadomatsu"; cin >> S; for (int tmp = 0; tmp < (1 << 9); tmp++) { bitset<9> a(tmp); string T = ""; for (int i = 0; i < 9; i++) { if (a.test(i)) T += kdmt.at(i); } if (T == S) { cout << "Yes" << endl; return 0; } } cout << "No" << endl; }