結果

問題 No.257 N言っちゃダメゲーム (3)
ユーザー convexineqconvexineq
提出日時 2021-02-04 10:09:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 70,088 KB
平均クエリ数 3.70
最終ジャッジ日時 2024-07-17 02:57:15
合計ジャッジ時間 4,935 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
69,060 KB
testcase_01 AC 99 ms
69,928 KB
testcase_02 AC 96 ms
68,936 KB
testcase_03 AC 97 ms
69,224 KB
testcase_04 AC 99 ms
69,332 KB
testcase_05 AC 97 ms
69,968 KB
testcase_06 AC 96 ms
69,652 KB
testcase_07 AC 97 ms
68,996 KB
testcase_08 AC 100 ms
69,328 KB
testcase_09 AC 100 ms
69,228 KB
testcase_10 AC 98 ms
69,760 KB
testcase_11 AC 97 ms
69,504 KB
testcase_12 AC 96 ms
68,932 KB
testcase_13 AC 96 ms
69,300 KB
testcase_14 AC 96 ms
69,368 KB
testcase_15 AC 98 ms
69,616 KB
testcase_16 AC 98 ms
69,420 KB
testcase_17 AC 98 ms
68,380 KB
testcase_18 AC 97 ms
70,088 KB
testcase_19 AC 95 ms
68,728 KB
testcase_20 AC 95 ms
69,428 KB
testcase_21 AC 95 ms
69,420 KB
testcase_22 AC 96 ms
69,124 KB
testcase_23 AC 95 ms
69,620 KB
testcase_24 AC 94 ms
69,636 KB
testcase_25 AC 95 ms
69,524 KB
testcase_26 AC 97 ms
68,776 KB
testcase_27 AC 99 ms
69,416 KB
testcase_28 AC 97 ms
68,736 KB
testcase_29 AC 96 ms
69,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def say(x):
    print(x)
    sys.stdout.flush()

import sys
n,k = map(int,input().split())
say((n-1)%(k+1))
while True:
    x = int(input())
    if x >= n: exit()
    r = (n-1-x)%(k+1)
    v = x + (r if r else k)
    say(v)
0