結果

問題 No.332 数列をプレゼントに
ユーザー maspymaspy
提出日時 2020-03-24 14:46:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 738 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 88,532 KB
最終ジャッジ日時 2024-12-31 15:01:24
合計ジャッジ時間 35,890 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 486 ms
51,052 KB
testcase_01 AC 488 ms
88,464 KB
testcase_02 AC 476 ms
50,916 KB
testcase_03 AC 479 ms
87,824 KB
testcase_04 AC 471 ms
44,108 KB
testcase_05 AC 509 ms
44,100 KB
testcase_06 AC 490 ms
44,104 KB
testcase_07 AC 482 ms
44,108 KB
testcase_08 AC 476 ms
44,496 KB
testcase_09 AC 488 ms
44,484 KB
testcase_10 AC 480 ms
44,108 KB
testcase_11 AC 474 ms
44,104 KB
testcase_12 AC 487 ms
44,104 KB
testcase_13 AC 484 ms
44,104 KB
testcase_14 AC 475 ms
43,972 KB
testcase_15 AC 496 ms
44,228 KB
testcase_16 AC 504 ms
44,368 KB
testcase_17 AC 497 ms
44,100 KB
testcase_18 AC 498 ms
44,224 KB
testcase_19 AC 493 ms
44,352 KB
testcase_20 AC 498 ms
44,352 KB
testcase_21 AC 500 ms
44,484 KB
testcase_22 AC 582 ms
44,384 KB
testcase_23 AC 479 ms
43,844 KB
testcase_24 AC 493 ms
44,484 KB
testcase_25 AC 496 ms
44,096 KB
testcase_26 AC 500 ms
44,356 KB
testcase_27 AC 602 ms
44,100 KB
testcase_28 AC 508 ms
43,848 KB
testcase_29 AC 531 ms
44,104 KB
testcase_30 AC 510 ms
43,972 KB
testcase_31 AC 509 ms
43,976 KB
testcase_32 AC 484 ms
43,972 KB
testcase_33 AC 553 ms
43,848 KB
testcase_34 AC 502 ms
44,104 KB
testcase_35 AC 505 ms
44,392 KB
testcase_36 AC 505 ms
44,096 KB
testcase_37 AC 499 ms
44,228 KB
testcase_38 AC 483 ms
43,976 KB
testcase_39 AC 485 ms
44,100 KB
testcase_40 AC 488 ms
43,976 KB
testcase_41 AC 490 ms
44,108 KB
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 AC 485 ms
44,092 KB
testcase_46 AC 494 ms
88,532 KB
権限があれば一括ダウンロードができます

ソースコード

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