結果

問題 No.1017 Reiwa Sequence
ユーザー lemondolemondo
提出日時 2020-12-23 10:40:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 373 ms / 2,000 ms
コード長 868 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 150,344 KB
最終ジャッジ日時 2024-09-21 16:20:04
合計ジャッジ時間 36,766 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,876 KB
testcase_01 AC 38 ms
52,220 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 44 ms
59,136 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 39 ms
51,872 KB
testcase_07 AC 40 ms
52,096 KB
testcase_08 AC 43 ms
51,584 KB
testcase_09 AC 47 ms
62,208 KB
testcase_10 AC 50 ms
64,128 KB
testcase_11 AC 48 ms
61,952 KB
testcase_12 AC 51 ms
65,408 KB
testcase_13 AC 48 ms
61,056 KB
testcase_14 AC 47 ms
62,080 KB
testcase_15 AC 49 ms
63,232 KB
testcase_16 AC 49 ms
62,592 KB
testcase_17 AC 56 ms
69,760 KB
testcase_18 AC 49 ms
62,208 KB
testcase_19 AC 333 ms
140,552 KB
testcase_20 AC 336 ms
140,288 KB
testcase_21 AC 329 ms
140,360 KB
testcase_22 AC 332 ms
140,488 KB
testcase_23 AC 337 ms
140,720 KB
testcase_24 AC 324 ms
140,388 KB
testcase_25 AC 324 ms
140,608 KB
testcase_26 AC 323 ms
140,740 KB
testcase_27 AC 233 ms
117,480 KB
testcase_28 AC 269 ms
123,204 KB
testcase_29 AC 57 ms
71,040 KB
testcase_30 AC 65 ms
78,300 KB
testcase_31 AC 88 ms
84,604 KB
testcase_32 AC 185 ms
101,892 KB
testcase_33 AC 52 ms
67,456 KB
testcase_34 AC 193 ms
101,648 KB
testcase_35 AC 36 ms
51,968 KB
testcase_36 AC 42 ms
58,112 KB
testcase_37 AC 194 ms
101,780 KB
testcase_38 AC 38 ms
51,840 KB
testcase_39 AC 197 ms
101,824 KB
testcase_40 AC 373 ms
150,248 KB
testcase_41 AC 354 ms
149,864 KB
testcase_42 AC 355 ms
150,176 KB
testcase_43 AC 370 ms
150,344 KB
testcase_44 AC 81 ms
93,312 KB
testcase_45 AC 367 ms
149,708 KB
testcase_46 AC 341 ms
150,064 KB
testcase_47 AC 345 ms
150,180 KB
testcase_48 AC 108 ms
105,472 KB
testcase_49 AC 101 ms
105,064 KB
testcase_50 AC 100 ms
105,344 KB
testcase_51 AC 37 ms
52,096 KB
testcase_52 AC 331 ms
140,360 KB
testcase_53 AC 118 ms
91,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def input(): return sys.stdin.readline().strip()
def mapint(): return list(map(int, input().split()))
sys.setrecursionlimit(10**9)

N = int(input())
As = mapint()

over22 = False
if N>=22:
    diff = N-22
    N = 22
    over22 = True

used = {}
for i in range(1<<N):
    tmp = 0
    lis = []
    for j in range(N):
        if (i>>j)&1:
            tmp += As[j]
            lis.append(As[j])
        else:
            lis.append(0)
    
    if tmp in used:
        neg_lis = []
        neg_i = used[tmp]
        for j in range(N):
            if (neg_i>>j)&1:
                neg_lis.append(-As[j])
            else:
                neg_lis.append(0)
        for i in range(N):
            lis[i] += neg_lis[i]
        print('Yes')
        if over22:
            lis.extend([0]*diff)
        print(*lis)
        exit()
    used[tmp] = i
else:
    print('No')
0