結果

問題 No.1770 N言っちゃダメゲーム (6)
ユーザー KudeKude
提出日時 2021-12-02 07:05:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 525 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 92,288 KB
最終ジャッジ日時 2024-07-05 01:47:17
合計ジャッジ時間 4,560 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,060 KB
testcase_01 AC 42 ms
53,612 KB
testcase_02 AC 41 ms
54,648 KB
testcase_03 AC 40 ms
54,816 KB
testcase_04 AC 42 ms
54,360 KB
testcase_05 AC 42 ms
54,768 KB
testcase_06 AC 82 ms
92,096 KB
testcase_07 AC 82 ms
92,288 KB
testcase_08 AC 42 ms
54,660 KB
testcase_09 AC 44 ms
54,900 KB
testcase_10 AC 83 ms
85,872 KB
testcase_11 AC 85 ms
85,608 KB
testcase_12 AC 83 ms
85,696 KB
testcase_13 AC 43 ms
54,268 KB
testcase_14 AC 43 ms
53,952 KB
testcase_15 AC 42 ms
54,520 KB
testcase_16 AC 41 ms
54,944 KB
testcase_17 AC 57 ms
65,632 KB
testcase_18 AC 41 ms
54,768 KB
testcase_19 AC 42 ms
54,012 KB
testcase_20 AC 43 ms
55,136 KB
testcase_21 AC 44 ms
53,852 KB
testcase_22 AC 43 ms
54,660 KB
testcase_23 AC 53 ms
63,400 KB
testcase_24 AC 50 ms
62,360 KB
testcase_25 AC 54 ms
64,648 KB
testcase_26 AC 54 ms
64,824 KB
testcase_27 AC 53 ms
64,588 KB
testcase_28 AC 88 ms
85,796 KB
testcase_29 AC 62 ms
71,388 KB
testcase_30 AC 85 ms
85,088 KB
testcase_31 AC 61 ms
70,764 KB
testcase_32 AC 90 ms
88,048 KB
testcase_33 AC 88 ms
88,076 KB
testcase_34 AC 91 ms
88,316 KB
testcase_35 AC 93 ms
88,192 KB
testcase_36 AC 92 ms
88,136 KB
testcase_37 AC 91 ms
87,876 KB
testcase_38 AC 86 ms
87,996 KB
testcase_39 AC 84 ms
87,724 KB
testcase_40 AC 82 ms
87,984 KB
testcase_41 AC 84 ms
87,912 KB
testcase_42 AC 84 ms
87,744 KB
testcase_43 AC 92 ms
88,032 KB
testcase_44 AC 59 ms
75,340 KB
testcase_45 AC 91 ms
88,252 KB
testcase_46 AC 85 ms
86,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n, k = map(int, input().split())
wins = deque()
win_others = [[] for  _ in range(n)]
for i in range(n - 1, 0, -1):
    cnt = len(wins) + len(win_others[i])
    if cnt == 0:
        wins.appendleft(i)
    elif cnt == 1:
        j = wins[0] if wins else win_others[i][0]
        p = i - (j - i)
        if p >= 0:
            win_others[p].append(i)
    if wins and wins[-1] == i + k:
        wins.pop()
ans = sorted(win_others[0] + list(wins))
if ans:
    print(*ans, sep='\n')
else:
    print(0)
0