結果

問題 No.257 N言っちゃダメゲーム (3)
ユーザー ntudantuda
提出日時 2024-12-04 15:39:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 182 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 68,704 KB
平均クエリ数 3.70
最終ジャッジ日時 2024-12-04 15:40:03
合計ジャッジ時間 5,108 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
68,312 KB
testcase_01 AC 93 ms
68,312 KB
testcase_02 AC 87 ms
67,928 KB
testcase_03 AC 88 ms
67,672 KB
testcase_04 AC 90 ms
67,928 KB
testcase_05 AC 85 ms
68,312 KB
testcase_06 AC 96 ms
67,800 KB
testcase_07 AC 86 ms
68,184 KB
testcase_08 AC 87 ms
68,184 KB
testcase_09 AC 90 ms
68,064 KB
testcase_10 AC 86 ms
67,936 KB
testcase_11 AC 89 ms
68,320 KB
testcase_12 AC 89 ms
67,680 KB
testcase_13 AC 90 ms
68,064 KB
testcase_14 AC 90 ms
68,064 KB
testcase_15 AC 87 ms
67,808 KB
testcase_16 AC 93 ms
68,096 KB
testcase_17 AC 93 ms
67,552 KB
testcase_18 AC 92 ms
67,808 KB
testcase_19 AC 90 ms
68,064 KB
testcase_20 AC 91 ms
68,704 KB
testcase_21 AC 93 ms
68,352 KB
testcase_22 AC 91 ms
68,064 KB
testcase_23 AC 91 ms
68,328 KB
testcase_24 AC 90 ms
67,432 KB
testcase_25 AC 90 ms
68,172 KB
testcase_26 AC 96 ms
67,808 KB
testcase_27 AC 91 ms
67,968 KB
testcase_28 AC 92 ms
68,192 KB
testcase_29 AC 92 ms
68,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
x0 = (N-1) % (K + 1)
x = x0
print(x)
while 1:
    y = int(input())
    if y >= N:
        exit()
    x = y + K + 1 - (y - x0) % (K + 1)
    print(x)
0