結果

問題 No.257 N言っちゃダメゲーム (3)
ユーザー nanaenanae
提出日時 2017-02-23 05:10:55
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 459 bytes
コンパイル時間 546 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,752 KB
平均クエリ数 3.70
最終ジャッジ日時 2024-07-17 00:50:09
合計ジャッジ時間 4,618 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def solve():
    N, K = map(int, input().split())
    A = (N - 1) % (K + 1)
    print(A, flush=True)

    while 1:
        B = int(input())

        if B >= N:
            return None

        A += K + 1
        print(A, flush=True)


def debug(x, table):
    for name, val in table.items():
        if x is val:
            print('DEBUG:{} -> {}'.format(name, val), file=sys.stderr)
            return None

if __name__ == '__main__':
    solve()
0