結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-07-11 03:18:19
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 570 bytes
コンパイル時間 3,301 ms
コンパイル使用メモリ 250,816 KB
実行使用メモリ 814,532 KB
最終ジャッジ日時 2024-09-12 23:59:12
合計ジャッジ時間 65,350 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 824 ms
31,744 KB
testcase_03 AC 993 ms
47,232 KB
testcase_04 AC 878 ms
30,208 KB
testcase_05 AC 559 ms
14,848 KB
testcase_06 AC 867 ms
32,256 KB
testcase_07 AC 842 ms
92,800 KB
testcase_08 AC 205 ms
6,940 KB
testcase_09 AC 888 ms
55,296 KB
testcase_10 AC 344 ms
11,136 KB
testcase_11 AC 309 ms
21,248 KB
testcase_12 AC 648 ms
30,208 KB
testcase_13 AC 1,137 ms
62,080 KB
testcase_14 AC 672 ms
22,400 KB
testcase_15 AC 993 ms
33,664 KB
testcase_16 AC 1,329 ms
59,648 KB
testcase_17 AC 533 ms
54,528 KB
testcase_18 AC 907 ms
73,088 KB
testcase_19 AC 447 ms
18,560 KB
testcase_20 AC 1,243 ms
66,304 KB
testcase_21 AC 361 ms
6,940 KB
testcase_22 AC 1,509 ms
69,504 KB
testcase_23 AC 1,490 ms
69,632 KB
testcase_24 AC 1,568 ms
69,504 KB
testcase_25 AC 1,530 ms
69,376 KB
testcase_26 AC 1,503 ms
69,504 KB
testcase_27 AC 1,525 ms
69,504 KB
testcase_28 AC 1,535 ms
69,504 KB
testcase_29 AC 1,547 ms
69,504 KB
testcase_30 AC 1,561 ms
69,504 KB
testcase_31 AC 1,521 ms
69,504 KB
testcase_32 AC 1,507 ms
69,376 KB
testcase_33 AC 1,508 ms
69,504 KB
testcase_34 AC 1,517 ms
69,376 KB
testcase_35 AC 1,508 ms
69,504 KB
testcase_36 AC 1,505 ms
69,504 KB
testcase_37 AC 1,551 ms
69,504 KB
testcase_38 AC 1,557 ms
69,504 KB
testcase_39 AC 1,580 ms
69,632 KB
testcase_40 AC 1,587 ms
69,248 KB
testcase_41 AC 1,566 ms
69,504 KB
testcase_42 AC 945 ms
26,368 KB
testcase_43 AC 944 ms
26,368 KB
testcase_44 AC 936 ms
26,368 KB
testcase_45 AC 941 ms
26,368 KB
testcase_46 AC 980 ms
26,368 KB
testcase_47 AC 939 ms
81,536 KB
testcase_48 AC 940 ms
81,536 KB
testcase_49 AC 951 ms
81,536 KB
testcase_50 AC 992 ms
81,664 KB
testcase_51 AC 952 ms
81,536 KB
testcase_52 MLE -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
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;
 
using ll=long long;
using pp=pair<int,int>;
#define sr string 
#define vc vector
#define db double
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
	int n;cin>>n;
	set<sr>s;
	rep(i,n){
		sr x;cin>>x;
		if(s.count(x))cout<<"Yes";
		else cout<<"No";
		cout<<"\n";
		s.insert(x);
		rep(j,x.size()-1){
			auto xx=x;
			swap(xx[j],xx[j+1]);
			s.insert(xx);
		}
	}
}
	
0