結果

問題 No.257 N言っちゃダメゲーム (3)
ユーザー 👑 rin204rin204
提出日時 2022-01-20 07:13:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 70,460 KB
平均クエリ数 3.70
最終ジャッジ日時 2024-07-17 03:07:24
合計ジャッジ時間 4,916 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
68,932 KB
testcase_01 AC 98 ms
68,736 KB
testcase_02 AC 96 ms
68,276 KB
testcase_03 AC 96 ms
69,884 KB
testcase_04 AC 98 ms
69,144 KB
testcase_05 AC 97 ms
68,884 KB
testcase_06 AC 96 ms
69,392 KB
testcase_07 AC 96 ms
69,208 KB
testcase_08 AC 97 ms
69,104 KB
testcase_09 AC 95 ms
70,192 KB
testcase_10 AC 97 ms
69,696 KB
testcase_11 AC 97 ms
70,180 KB
testcase_12 AC 97 ms
68,960 KB
testcase_13 AC 97 ms
70,052 KB
testcase_14 AC 97 ms
69,172 KB
testcase_15 AC 95 ms
68,636 KB
testcase_16 AC 96 ms
68,736 KB
testcase_17 AC 96 ms
69,992 KB
testcase_18 AC 95 ms
68,308 KB
testcase_19 AC 97 ms
70,440 KB
testcase_20 AC 97 ms
69,368 KB
testcase_21 AC 98 ms
69,980 KB
testcase_22 AC 95 ms
68,548 KB
testcase_23 AC 96 ms
69,120 KB
testcase_24 AC 96 ms
69,248 KB
testcase_25 AC 97 ms
69,768 KB
testcase_26 AC 97 ms
70,460 KB
testcase_27 AC 95 ms
69,164 KB
testcase_28 AC 95 ms
69,852 KB
testcase_29 AC 95 ms
69,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
N = n
tot = 0
if (n - 1) % (k + 1) == 0:
    print(0, flush = True)
    a = int(input())
    if a >= N: exit()
    n -= a
    tot += a

while 1:
    x = (n - 1) % (k + 1)
    print(tot + x, flush = True)
    n -= x
    tot += x
    a = int(input())
    if a >= N: exit()
    n -= a - tot
    tot = a
0