結果

問題 No.625 ソンタクロース
ユーザー ああいいああいい
提出日時 2022-04-28 12:39:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 430 ms / 4,000 ms
コード長 754 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 76,648 KB
最終ジャッジ日時 2024-06-28 07:54:27
合計ジャッジ時間 3,146 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,088 KB
testcase_01 AC 38 ms
52,384 KB
testcase_02 AC 38 ms
52,004 KB
testcase_03 AC 38 ms
51,748 KB
testcase_04 AC 37 ms
52,808 KB
testcase_05 AC 38 ms
53,112 KB
testcase_06 AC 39 ms
52,684 KB
testcase_07 AC 38 ms
53,144 KB
testcase_08 AC 38 ms
52,604 KB
testcase_09 AC 38 ms
52,804 KB
testcase_10 AC 38 ms
52,756 KB
testcase_11 AC 39 ms
53,204 KB
testcase_12 AC 38 ms
53,208 KB
testcase_13 AC 38 ms
52,812 KB
testcase_14 AC 40 ms
53,632 KB
testcase_15 AC 93 ms
76,596 KB
testcase_16 AC 63 ms
73,084 KB
testcase_17 AC 214 ms
76,200 KB
testcase_18 AC 430 ms
76,648 KB
testcase_19 AC 114 ms
76,108 KB
testcase_20 AC 117 ms
75,920 KB
testcase_21 AC 91 ms
75,976 KB
testcase_22 AC 360 ms
76,440 KB
testcase_23 AC 81 ms
76,204 KB
権限があれば一括ダウンロードができます

ソースコード

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