結果

問題 No.1017 Reiwa Sequence
ユーザー Kiri8128Kiri8128
提出日時 2020-04-03 22:13:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 647 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 161,532 KB
最終ジャッジ日時 2024-07-03 03:29:38
合計ジャッジ時間 32,615 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
117,248 KB
testcase_01 AC 59 ms
117,504 KB
testcase_02 AC 58 ms
117,632 KB
testcase_03 AC 58 ms
117,248 KB
testcase_04 AC 58 ms
117,632 KB
testcase_05 AC 59 ms
117,632 KB
testcase_06 AC 57 ms
117,632 KB
testcase_07 AC 57 ms
117,376 KB
testcase_08 AC 58 ms
117,376 KB
testcase_09 AC 61 ms
124,288 KB
testcase_10 AC 61 ms
124,288 KB
testcase_11 AC 62 ms
124,160 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 62 ms
124,160 KB
testcase_15 AC 64 ms
123,776 KB
testcase_16 AC 62 ms
124,032 KB
testcase_17 AC 62 ms
124,288 KB
testcase_18 AC 63 ms
123,776 KB
testcase_19 AC 87 ms
124,160 KB
testcase_20 AC 87 ms
124,160 KB
testcase_21 AC 87 ms
123,904 KB
testcase_22 AC 87 ms
124,160 KB
testcase_23 AC 79 ms
124,160 KB
testcase_24 AC 85 ms
124,288 KB
testcase_25 AC 87 ms
124,160 KB
testcase_26 AC 83 ms
124,160 KB
testcase_27 AC 81 ms
124,160 KB
testcase_28 AC 76 ms
123,904 KB
testcase_29 AC 63 ms
124,032 KB
testcase_30 AC 67 ms
124,268 KB
testcase_31 AC 64 ms
124,160 KB
testcase_32 AC 71 ms
124,288 KB
testcase_33 AC 65 ms
123,904 KB
testcase_34 AC 74 ms
124,032 KB
testcase_35 AC 59 ms
117,900 KB
testcase_36 AC 61 ms
117,248 KB
testcase_37 AC 74 ms
124,416 KB
testcase_38 AC 62 ms
117,516 KB
testcase_39 AC 75 ms
124,288 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 57 ms
117,632 KB
testcase_52 AC 83 ms
124,160 KB
testcase_53 AC 66 ms
124,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [int(a) for a in input().split()]
K = min(N, 22)
B = A[:K]

D = {1<<i: i for i in range(22)}
X = [0] * (1 << 22)
Y = [0] * (1 << 22)
for i in range(1, 1 << K):
    l = i & (-i)
    if i == l:
        x = B[D[l]]
    else:
        x = X[i^l] + B[D[l]]
    X[i] = x
    if Y[x]:
        j = Y[x]
        k = i & j
        i ^= k
        j ^= k
        for s in range(K):
            if i >> s & 1:
                pass
            elif j >> s & 1:
                A[s] *= -1
            else:
                A[s] = 0
        print("Yes")
        print(*A)
        
        break
    else:
        Y[x] = i
else:
    print("No")
0