結果

問題 No.257 N言っちゃダメゲーム (3)
ユーザー gorugo30gorugo30
提出日時 2021-03-18 00:02:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 68,960 KB
平均クエリ数 3.70
最終ジャッジ日時 2024-07-17 02:59:02
合計ジャッジ時間 5,267 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
68,280 KB
testcase_01 AC 107 ms
68,548 KB
testcase_02 AC 109 ms
67,908 KB
testcase_03 AC 102 ms
68,320 KB
testcase_04 AC 100 ms
68,696 KB
testcase_05 AC 98 ms
68,192 KB
testcase_06 AC 97 ms
68,184 KB
testcase_07 AC 101 ms
68,952 KB
testcase_08 AC 99 ms
68,696 KB
testcase_09 AC 102 ms
68,064 KB
testcase_10 AC 100 ms
68,064 KB
testcase_11 AC 97 ms
68,704 KB
testcase_12 AC 99 ms
68,328 KB
testcase_13 AC 99 ms
68,960 KB
testcase_14 AC 106 ms
68,320 KB
testcase_15 AC 100 ms
68,840 KB
testcase_16 AC 99 ms
68,780 KB
testcase_17 AC 100 ms
68,320 KB
testcase_18 AC 98 ms
67,984 KB
testcase_19 AC 100 ms
68,064 KB
testcase_20 AC 101 ms
68,296 KB
testcase_21 AC 100 ms
68,064 KB
testcase_22 AC 105 ms
68,456 KB
testcase_23 AC 100 ms
68,716 KB
testcase_24 AC 98 ms
68,840 KB
testcase_25 AC 99 ms
68,712 KB
testcase_26 AC 99 ms
68,712 KB
testcase_27 AC 101 ms
68,208 KB
testcase_28 AC 105 ms
68,832 KB
testcase_29 AC 100 ms
68,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
# ... 2 1 0 K ... 3 2 1
gr = (N - 1) % (K + 1)
x = gr
while 1:
    print(min(x, N - 1), flush = True)
    h = int(input())
    if h >= N:
        break
    x += K + 1
0