結果

問題 No.257 N言っちゃダメゲーム (3)
ユーザー rlangevinrlangevin
提出日時 2023-01-14 15:13:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 70,152 KB
平均クエリ数 3.70
最終ジャッジ日時 2024-07-17 03:14:58
合計ジャッジ時間 4,883 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
68,444 KB
testcase_01 AC 93 ms
68,608 KB
testcase_02 AC 92 ms
70,080 KB
testcase_03 AC 94 ms
69,744 KB
testcase_04 AC 93 ms
69,916 KB
testcase_05 AC 94 ms
69,104 KB
testcase_06 AC 93 ms
69,352 KB
testcase_07 AC 94 ms
69,156 KB
testcase_08 AC 95 ms
68,672 KB
testcase_09 AC 94 ms
69,668 KB
testcase_10 AC 94 ms
68,796 KB
testcase_11 AC 96 ms
69,016 KB
testcase_12 AC 93 ms
69,400 KB
testcase_13 AC 93 ms
69,012 KB
testcase_14 AC 95 ms
69,408 KB
testcase_15 AC 96 ms
69,908 KB
testcase_16 AC 101 ms
68,808 KB
testcase_17 AC 93 ms
70,152 KB
testcase_18 AC 95 ms
68,676 KB
testcase_19 AC 92 ms
69,640 KB
testcase_20 AC 91 ms
69,532 KB
testcase_21 AC 93 ms
69,504 KB
testcase_22 AC 93 ms
70,116 KB
testcase_23 AC 93 ms
69,348 KB
testcase_24 AC 93 ms
68,232 KB
testcase_25 AC 94 ms
68,736 KB
testcase_26 AC 94 ms
68,872 KB
testcase_27 AC 94 ms
68,888 KB
testcase_28 AC 94 ms
69,412 KB
testcase_29 AC 95 ms
69,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

N, K = map(int, input().split())
if K >= N - 1:
    print(N - 1)
    sys.stdout.flush()
    exit()
now = (N - 1) % (K + 1)
print(now)
sys.stdout.flush()
while True:
    v = int(input())
    if v >= N:
        exit()
    nex = K + 1 - (v - now) % (K + 1)
    now = v + nex
    print(now)
    sys.stdout.flush()
0