結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー keisuke6keisuke6
提出日時 2022-10-14 21:48:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 546 bytes
コンパイル時間 2,384 ms
コンパイル使用メモリ 210,332 KB
実行使用メモリ 21,332 KB
最終ジャッジ日時 2024-06-26 13:37:49
合計ジャッジ時間 31,063 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,884 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 312 ms
15,124 KB
testcase_03 AC 366 ms
16,576 KB
testcase_04 AC 346 ms
15,624 KB
testcase_05 AC 284 ms
11,812 KB
testcase_06 AC 376 ms
15,936 KB
testcase_07 AC 220 ms
11,464 KB
testcase_08 AC 168 ms
7,116 KB
testcase_09 AC 291 ms
14,404 KB
testcase_10 AC 194 ms
9,040 KB
testcase_11 AC 115 ms
8,448 KB
testcase_12 AC 251 ms
12,488 KB
testcase_13 AC 368 ms
17,076 KB
testcase_14 AC 299 ms
12,940 KB
testcase_15 AC 421 ms
16,896 KB
testcase_16 AC 505 ms
20,384 KB
testcase_17 AC 147 ms
9,216 KB
testcase_18 AC 261 ms
12,048 KB
testcase_19 AC 210 ms
10,524 KB
testcase_20 AC 414 ms
17,904 KB
testcase_21 AC 282 ms
9,960 KB
testcase_22 AC 546 ms
21,332 KB
testcase_23 AC 545 ms
21,204 KB
testcase_24 AC 551 ms
21,200 KB
testcase_25 AC 531 ms
21,208 KB
testcase_26 AC 542 ms
21,204 KB
testcase_27 AC 534 ms
21,332 KB
testcase_28 AC 530 ms
21,200 KB
testcase_29 AC 538 ms
21,204 KB
testcase_30 AC 528 ms
21,328 KB
testcase_31 AC 528 ms
21,332 KB
testcase_32 AC 525 ms
21,204 KB
testcase_33 AC 545 ms
21,208 KB
testcase_34 AC 547 ms
21,208 KB
testcase_35 AC 558 ms
21,332 KB
testcase_36 AC 547 ms
21,332 KB
testcase_37 AC 544 ms
21,332 KB
testcase_38 AC 547 ms
21,208 KB
testcase_39 AC 556 ms
21,204 KB
testcase_40 AC 547 ms
21,200 KB
testcase_41 AC 560 ms
21,332 KB
testcase_42 AC 372 ms
14,976 KB
testcase_43 AC 369 ms
15,100 KB
testcase_44 AC 362 ms
14,972 KB
testcase_45 AC 364 ms
14,972 KB
testcase_46 AC 385 ms
14,972 KB
testcase_47 AC 244 ms
10,196 KB
testcase_48 AC 238 ms
10,192 KB
testcase_49 AC 248 ms
10,320 KB
testcase_50 AC 241 ms
10,196 KB
testcase_51 AC 245 ms
10,192 KB
testcase_52 AC 29 ms
6,940 KB
testcase_53 AC 29 ms
6,948 KB
testcase_54 AC 29 ms
6,940 KB
testcase_55 AC 260 ms
6,944 KB
testcase_56 AC 259 ms
6,940 KB
testcase_57 AC 257 ms
6,940 KB
testcase_58 TLE -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
  int N;
  cin>>N;
  vector<string> S(N);
  unordered_set<string> s;
  for(int i=0;i<N;i++){
      cin>>S[i];
      bool ok = true;
      for(int j=1;j<S[i].size();j++){
          swap(S[i][j],S[i][j-1]);
          if(s.count(S[i])){
              ok = false;
              swap(S[i][j],S[i][j-1]);
              break;
          }
          swap(S[i][j],S[i][j-1]);
      }
      cout<<((ok && !s.count(S[i])) ? "No" : "Yes")<<endl;
      s.insert(S[i]);
  } 
}
0