結果

問題 No.1770 N言っちゃダメゲーム (6)
ユーザー KudeKude
提出日時 2021-12-02 06:59:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 517 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 92,544 KB
最終ジャッジ日時 2024-07-05 01:47:11
合計ジャッジ時間 4,579 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,556 KB
testcase_01 AC 42 ms
53,440 KB
testcase_02 AC 44 ms
53,760 KB
testcase_03 AC 43 ms
53,632 KB
testcase_04 AC 43 ms
53,248 KB
testcase_05 AC 44 ms
53,504 KB
testcase_06 AC 85 ms
92,544 KB
testcase_07 AC 83 ms
92,348 KB
testcase_08 AC 43 ms
53,888 KB
testcase_09 AC 42 ms
53,632 KB
testcase_10 AC 84 ms
86,028 KB
testcase_11 AC 82 ms
86,048 KB
testcase_12 AC 82 ms
85,992 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 43 ms
53,888 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 40 ms
54,144 KB
testcase_20 WA -
testcase_21 AC 43 ms
53,504 KB
testcase_22 AC 42 ms
53,504 KB
testcase_23 AC 53 ms
62,464 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 88 ms
86,144 KB
testcase_29 AC 64 ms
71,168 KB
testcase_30 WA -
testcase_31 AC 64 ms
70,656 KB
testcase_32 AC 91 ms
88,448 KB
testcase_33 WA -
testcase_34 AC 92 ms
88,320 KB
testcase_35 AC 91 ms
88,516 KB
testcase_36 AC 93 ms
88,616 KB
testcase_37 AC 93 ms
88,296 KB
testcase_38 AC 86 ms
88,064 KB
testcase_39 AC 84 ms
88,132 KB
testcase_40 AC 86 ms
88,064 KB
testcase_41 AC 84 ms
88,320 KB
testcase_42 AC 85 ms
88,092 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 88 ms
87,280 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 = win_others[0] + list(wins)
if ans:
    print(*ans, sep='\n')
else:
    print(0)
0