結果

問題 No.1017 Reiwa Sequence
ユーザー ayaoniayaoni
提出日時 2020-11-26 13:55:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 315 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 131,692 KB
最終ジャッジ日時 2024-07-23 20:47:01
合計ジャッジ時間 39,137 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
78,692 KB
testcase_01 AC 70 ms
77,644 KB
testcase_02 AC 68 ms
78,316 KB
testcase_03 AC 75 ms
84,740 KB
testcase_04 AC 69 ms
78,820 KB
testcase_05 AC 71 ms
77,864 KB
testcase_06 AC 71 ms
78,048 KB
testcase_07 AC 72 ms
78,016 KB
testcase_08 AC 71 ms
77,888 KB
testcase_09 AC 76 ms
85,792 KB
testcase_10 AC 77 ms
86,792 KB
testcase_11 AC 78 ms
87,604 KB
testcase_12 AC 78 ms
86,588 KB
testcase_13 AC 75 ms
86,436 KB
testcase_14 AC 77 ms
87,040 KB
testcase_15 AC 75 ms
86,872 KB
testcase_16 AC 79 ms
86,976 KB
testcase_17 AC 80 ms
88,144 KB
testcase_18 AC 78 ms
86,716 KB
testcase_19 AC 253 ms
104,860 KB
testcase_20 AC 258 ms
105,336 KB
testcase_21 AC 259 ms
104,924 KB
testcase_22 AC 260 ms
105,120 KB
testcase_23 AC 257 ms
104,952 KB
testcase_24 AC 253 ms
104,928 KB
testcase_25 AC 246 ms
105,136 KB
testcase_26 AC 232 ms
104,992 KB
testcase_27 AC 211 ms
105,128 KB
testcase_28 AC 215 ms
105,080 KB
testcase_29 AC 81 ms
86,904 KB
testcase_30 AC 85 ms
87,068 KB
testcase_31 AC 92 ms
89,892 KB
testcase_32 AC 186 ms
105,012 KB
testcase_33 AC 78 ms
86,300 KB
testcase_34 AC 193 ms
105,148 KB
testcase_35 AC 70 ms
78,140 KB
testcase_36 AC 75 ms
84,584 KB
testcase_37 AC 191 ms
105,056 KB
testcase_38 AC 71 ms
78,940 KB
testcase_39 AC 192 ms
105,124 KB
testcase_40 AC 306 ms
117,276 KB
testcase_41 AC 304 ms
117,248 KB
testcase_42 AC 313 ms
115,512 KB
testcase_43 AC 315 ms
115,352 KB
testcase_44 AC 125 ms
118,808 KB
testcase_45 AC 307 ms
117,032 KB
testcase_46 AC 295 ms
115,636 KB
testcase_47 AC 275 ms
115,256 KB
testcase_48 AC 170 ms
131,616 KB
testcase_49 AC 143 ms
130,784 KB
testcase_50 AC 147 ms
131,692 KB
testcase_51 AC 71 ms
78,412 KB
testcase_52 AC 234 ms
104,924 KB
testcase_53 AC 102 ms
94,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def I(): return int(sys.stdin.readline().rstrip())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))


N = I()
A = LI()[:22]
M = len(A)

flag = [None]*3300001
ans = [0]*M
for i in range(1<<M):
    x = 0
    for j in range(M):
        if (i>>j) & 1:
            x += A[j]
    if flag[x]:
        print('Yes')
        for j in range(M):
            ans[j] = (((i>>j) & 1)-((flag[x]>>j) & 1))*A[j]
        break
    else:
        flag[x] = i
else:
    print('No')
    exit()

ans += [0]*(N-M)
print(*ans)
0