結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-07-11 03:26:03
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 575 bytes
コンパイル時間 2,953 ms
コンパイル使用メモリ 251,500 KB
実行使用メモリ 813,840 KB
最終ジャッジ日時 2024-09-13 00:00:21
合計ジャッジ時間 64,369 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 781 ms
31,616 KB
testcase_03 AC 998 ms
46,848 KB
testcase_04 AC 820 ms
30,080 KB
testcase_05 AC 543 ms
14,848 KB
testcase_06 AC 896 ms
32,000 KB
testcase_07 AC 788 ms
92,672 KB
testcase_08 AC 209 ms
6,944 KB
testcase_09 AC 859 ms
55,296 KB
testcase_10 AC 333 ms
11,008 KB
testcase_11 AC 293 ms
21,248 KB
testcase_12 AC 627 ms
30,080 KB
testcase_13 AC 1,109 ms
62,208 KB
testcase_14 AC 641 ms
22,528 KB
testcase_15 AC 964 ms
33,536 KB
testcase_16 AC 1,406 ms
59,520 KB
testcase_17 AC 500 ms
54,656 KB
testcase_18 AC 889 ms
73,088 KB
testcase_19 AC 453 ms
18,560 KB
testcase_20 AC 1,213 ms
66,176 KB
testcase_21 AC 373 ms
6,940 KB
testcase_22 AC 1,539 ms
69,504 KB
testcase_23 AC 1,526 ms
69,248 KB
testcase_24 AC 1,505 ms
69,376 KB
testcase_25 AC 1,501 ms
69,248 KB
testcase_26 AC 1,541 ms
69,376 KB
testcase_27 AC 1,518 ms
69,376 KB
testcase_28 AC 1,499 ms
69,376 KB
testcase_29 AC 1,570 ms
69,248 KB
testcase_30 AC 1,591 ms
69,376 KB
testcase_31 AC 1,531 ms
69,376 KB
testcase_32 AC 1,538 ms
69,504 KB
testcase_33 AC 1,534 ms
69,504 KB
testcase_34 AC 1,517 ms
69,504 KB
testcase_35 AC 1,505 ms
69,504 KB
testcase_36 AC 1,573 ms
69,248 KB
testcase_37 AC 1,538 ms
69,504 KB
testcase_38 AC 1,546 ms
69,504 KB
testcase_39 AC 1,582 ms
69,376 KB
testcase_40 AC 1,559 ms
69,248 KB
testcase_41 AC 1,537 ms
69,504 KB
testcase_42 AC 933 ms
26,368 KB
testcase_43 AC 938 ms
26,368 KB
testcase_44 AC 942 ms
26,368 KB
testcase_45 AC 943 ms
26,368 KB
testcase_46 AC 943 ms
26,368 KB
testcase_47 AC 934 ms
81,408 KB
testcase_48 AC 914 ms
81,536 KB
testcase_49 AC 915 ms
81,536 KB
testcase_50 AC 916 ms
81,408 KB
testcase_51 AC 922 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){
			swap(x[j],x[j+1]);
			s.insert(x);
			swap(x[j],x[j+1]);
		}
	}
}
	
0