結果

問題 No.625 ソンタクロース
ユーザー ああいいああいい
提出日時 2022-04-28 12:36:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 756 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 81,756 KB
実行使用メモリ 76,400 KB
最終ジャッジ日時 2024-06-28 07:54:22
合計ジャッジ時間 3,215 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,748 KB
testcase_01 AC 38 ms
52,800 KB
testcase_02 WA -
testcase_03 AC 37 ms
52,672 KB
testcase_04 WA -
testcase_05 AC 39 ms
52,884 KB
testcase_06 AC 40 ms
52,500 KB
testcase_07 AC 38 ms
52,564 KB
testcase_08 AC 39 ms
52,404 KB
testcase_09 AC 39 ms
52,696 KB
testcase_10 AC 40 ms
53,352 KB
testcase_11 AC 39 ms
53,488 KB
testcase_12 AC 39 ms
53,316 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())

dat = [M]
for i in range(2,N+1):
    l = [(dat[j],-j) for j in range(i-1)]
    l.sort(reverse = True)
    t = 0
    for j in dat:
        if j == -1:
            t += 1
    k = i // 2
    if t >= k:
        dat = [0] * (i - 1) + [M]
        continue
    count = 0
    s = set()
    for j in range(i - 1 - k):
        count += l[j][0]
        s.add(-l[j][1])
    if count < k - t:
        dat.append(-1)
        continue
    else:
        for j in range(i-1):
            if j in s:
                dat[j] = 0
            else:
                if dat[j] >= 0:
                    dat[j] += 1
                    count -= 1
                else:
                    dat[j] = 0
        dat.append(count)
print(*dat[::-1])
    
0