結果

問題 No.2442 線形写像
ユーザー t98slidert98slider
提出日時 2023-06-10 09:31:24
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 550 bytes
コンパイル時間 2,549 ms
コンパイル使用メモリ 184,152 KB
実行使用メモリ 13,636 KB
最終ジャッジ日時 2025-01-02 15:22:32
合計ジャッジ時間 19,934 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
13,636 KB
testcase_01 AC 9 ms
11,172 KB
testcase_02 AC 8 ms
11,048 KB
testcase_03 AC 9 ms
11,300 KB
testcase_04 AC 8 ms
13,636 KB
testcase_05 AC 8 ms
11,172 KB
testcase_06 AC 9 ms
11,176 KB
testcase_07 AC 9 ms
6,816 KB
testcase_08 AC 9 ms
6,816 KB
testcase_09 AC 8 ms
6,820 KB
testcase_10 AC 9 ms
6,820 KB
testcase_11 AC 10 ms
6,816 KB
testcase_12 AC 9 ms
6,820 KB
testcase_13 AC 9 ms
6,816 KB
testcase_14 AC 9 ms
6,820 KB
testcase_15 AC 465 ms
6,816 KB
testcase_16 AC 1,819 ms
6,816 KB
testcase_17 TLE -
testcase_18 AC 1,832 ms
6,820 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:12:28: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   12 |     for(auto &&v : a) scanf("%llu", &v);
      |                       ~~~~~^~~~~~~~~~~~

ソースコード

diff #

#pragma GCC optimize ("O3","unroll-loops")
#pragma GCC target("avx512f")
#include <bits/stdc++.h>
using namespace std;
using ull = unsigned long long;

int main(){
    int n;
    cin >> n;
    n = 1 << n;
    array<ull, 131072> a;
    for(auto &&v : a) scanf("%llu", &v);
    
    if(a[0]){
        puts("No");
        return 0;
    }

    for(int i = 0; i < n; i++){
        for(int j = 0; j < i; j++){
            if(a[i ^ j] != (a[i] ^ a[j])){
                puts("No");
                return 0;
            }
        }
    }

    puts("Yes");
}
0