結果

問題 No.2442 線形写像
ユーザー MagentorMagentor
提出日時 2023-08-25 22:03:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 638 bytes
コンパイル時間 6,512 ms
コンパイル使用メモリ 203,248 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-06 16:31:30
合計ジャッジ時間 22,870 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1,902 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1,900 ms
5,376 KB
testcase_05 AC 1,899 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1,900 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1,900 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1,900 ms
5,376 KB
testcase_13 AC 1,900 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 40 ms
5,376 KB
testcase_16 AC 1,901 ms
5,376 KB
testcase_17 WA -
testcase_18 AC 121 ms
5,376 KB
testcase_19 AC 1,900 ms
5,376 KB
testcase_20 AC 1,900 ms
5,376 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#define rep(i, n) for (long long i = 0; i < (long long)(n); i++)
#define rep2(i, m ,n) for (int i = (m); i < (long long)(n); i++)
#define REP(i, n) for (long long i = 1; i < (long long)(n); i++)
typedef long long ll;

int main() {
int n;cin>>n;
ll t = 1<<n;
double start = clock();
vector<ll> v(t);
rep(i,t){cin>>v[i];}
while(1.89>(double)(clock() - start) / CLOCKS_PER_SEC){
	int i = rand()%t;int j = rand()%t;
if(v[i^j]!=(v[i]^v[j])){cout<<"No"<<endl;return 0;}	
}

cout << "Yes" << endl;return 0;
}
0