結果

問題 No.2442 線形写像
ユーザー t98slidert98slider
提出日時 2023-06-10 11:40:13
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 556 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 31,872 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2025-01-02 17:35:21
合計ジャッジ時間 17,306 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
7,680 KB
testcase_01 AC 1 ms
10,496 KB
testcase_02 AC 1 ms
10,496 KB
testcase_03 AC 0 ms
7,680 KB
testcase_04 AC 0 ms
7,680 KB
testcase_05 AC 1 ms
10,496 KB
testcase_06 AC 0 ms
10,496 KB
testcase_07 AC 0 ms
5,248 KB
testcase_08 AC 0 ms
5,248 KB
testcase_09 AC 0 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 1 ms
5,248 KB
testcase_15 AC 416 ms
5,248 KB
testcase_16 AC 1,652 ms
5,248 KB
testcase_17 TLE -
testcase_18 AC 1,666 ms
5,248 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:7:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |     scanf("%d", &n);
      |     ~~~~~^~~~~~~~~~
main.cpp:10:41: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |         for(int i = 0; i < n; i++) scanf("%llu", &a[i]);
      |                                    ~~~~~^~~~~~~~~~~~~~~

ソースコード

diff #

#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");
}
0