結果
問題 | No.2442 線形写像 |
ユーザー | t98slider |
提出日時 | 2023-06-10 11:40:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 556 bytes |
コンパイル時間 | 379 ms |
コンパイル使用メモリ | 34,304 KB |
実行使用メモリ | 10,784 KB |
最終ジャッジ日時 | 2024-06-10 20:22:56 |
合計ジャッジ時間 | 6,272 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 384 ms
5,376 KB |
testcase_16 | AC | 1,472 ms
5,376 KB |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
#pragma GCC optimize ("O3","unroll-loops") #pragma GCC target("avx512f") #include <stdio.h> int main(){ int n; scanf("%d", &n); n = 1 << n; unsigned long long a[n]; for(int i = 0; i < n; i++) scanf("%llu", &a[i]); if(a[0]){ puts("No"); return 0; } for(register int i = 0; i < n; i++){ unsigned long long b = a[i]; for(register int j = 0; j < i; j++){ if(b ^ a[i ^ j] ^ a[j]){ puts("No"); return 0; } } } puts("Yes"); }