結果

問題 No.332 数列をプレゼントに
ユーザー maspymaspy
提出日時 2020-03-24 14:46:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 738 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 50,920 KB
最終ジャッジ日時 2024-06-10 05:55:56
合計ジャッジ時間 28,407 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 497 ms
50,920 KB
testcase_01 AC 512 ms
44,364 KB
testcase_02 AC 506 ms
43,844 KB
testcase_03 AC 504 ms
44,468 KB
testcase_04 AC 507 ms
44,228 KB
testcase_05 AC 509 ms
44,228 KB
testcase_06 AC 509 ms
43,968 KB
testcase_07 AC 507 ms
44,232 KB
testcase_08 AC 511 ms
43,968 KB
testcase_09 AC 509 ms
43,968 KB
testcase_10 AC 502 ms
43,968 KB
testcase_11 AC 501 ms
44,100 KB
testcase_12 AC 505 ms
44,228 KB
testcase_13 AC 505 ms
43,972 KB
testcase_14 AC 500 ms
44,356 KB
testcase_15 AC 497 ms
44,608 KB
testcase_16 AC 497 ms
44,356 KB
testcase_17 AC 503 ms
43,976 KB
testcase_18 AC 495 ms
43,972 KB
testcase_19 AC 499 ms
44,496 KB
testcase_20 AC 495 ms
44,104 KB
testcase_21 AC 504 ms
44,360 KB
testcase_22 AC 609 ms
44,488 KB
testcase_23 AC 497 ms
44,356 KB
testcase_24 AC 502 ms
44,224 KB
testcase_25 AC 501 ms
43,976 KB
testcase_26 AC 507 ms
43,964 KB
testcase_27 AC 519 ms
43,976 KB
testcase_28 AC 509 ms
44,364 KB
testcase_29 AC 502 ms
44,480 KB
testcase_30 AC 516 ms
44,228 KB
testcase_31 AC 527 ms
44,364 KB
testcase_32 AC 512 ms
43,844 KB
testcase_33 AC 567 ms
44,616 KB
testcase_34 AC 515 ms
44,612 KB
testcase_35 AC 507 ms
43,968 KB
testcase_36 AC 517 ms
43,852 KB
testcase_37 AC 506 ms
44,228 KB
testcase_38 AC 506 ms
44,232 KB
testcase_39 AC 511 ms
43,840 KB
testcase_40 AC 505 ms
43,976 KB
testcase_41 AC 508 ms
43,968 KB
testcase_42 TLE -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np


N, X, *A = map(int, read().split())
B = sorted(A)


def dfs(B, S):
    if sum(B) < S:
        return False
    if sum(B) == S:
        return B.copy()
    x = B.pop()
    if x < S:
        res = dfs(B, S - x)
        if res:
            return res + [x]
    res = dfs(B, S)
    B.append(x)
    return res


C = dfs(B, X)
if C:
    C.sort()
    i = 0
    res = set(range(N))
    answer = ['x'] * N
    for c in C:
        for i in res:
            if A[i] == c:
                break
        res.remove(i)
        answer[i] = 'o'
    print(''.join(answer))
else:
    print('No')
0