結果

問題 No.257 N言っちゃダメゲーム (3)
ユーザー yaoshimaxyaoshimax
提出日時 2016-05-08 14:24:45
言語 Python2
(2.7.18)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 240 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 7,196 KB
実行使用メモリ 25,488 KB
平均クエリ数 3.70
最終ジャッジ日時 2024-07-16 23:41:33
合計ジャッジ時間 4,269 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
N,K=map(int,raw_input().split())
nex=(N-1)%(K+1)
print nex
sys.stdout.flush()
nex+=(K+1)
while True:
    a=int(raw_input())
    if a >= N:
        exit()
    else:
        print nex
        sys.stdout.flush()
        nex+=(K+1)

0