結果

問題 No.257 N言っちゃダメゲーム (3)
ユーザー tjaketjake
提出日時 2015-12-20 04:46:41
言語 Python2
(2.7.18)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 6,700 KB
実行使用メモリ 24,252 KB
平均クエリ数 3.70
最終ジャッジ日時 2023-09-23 22:30:02
合計ジャッジ時間 4,230 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
23,364 KB
testcase_01 AC 54 ms
23,352 KB
testcase_02 AC 51 ms
23,220 KB
testcase_03 AC 51 ms
24,228 KB
testcase_04 AC 54 ms
24,252 KB
testcase_05 AC 50 ms
24,180 KB
testcase_06 AC 53 ms
23,940 KB
testcase_07 AC 54 ms
24,108 KB
testcase_08 AC 56 ms
23,880 KB
testcase_09 AC 54 ms
23,208 KB
testcase_10 AC 55 ms
23,808 KB
testcase_11 AC 56 ms
23,220 KB
testcase_12 AC 54 ms
23,796 KB
testcase_13 AC 54 ms
23,268 KB
testcase_14 AC 55 ms
23,352 KB
testcase_15 AC 57 ms
23,880 KB
testcase_16 AC 55 ms
23,880 KB
testcase_17 AC 55 ms
23,484 KB
testcase_18 AC 56 ms
23,580 KB
testcase_19 AC 54 ms
24,192 KB
testcase_20 AC 55 ms
23,388 KB
testcase_21 AC 55 ms
23,544 KB
testcase_22 AC 53 ms
23,220 KB
testcase_23 AC 54 ms
23,400 KB
testcase_24 AC 52 ms
23,676 KB
testcase_25 AC 54 ms
23,340 KB
testcase_26 AC 56 ms
23,340 KB
testcase_27 AC 58 ms
23,220 KB
testcase_28 AC 55 ms
24,120 KB
testcase_29 AC 55 ms
23,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdout
n, k = map(int, raw_input().split())
def output(s):
    stdout.write(`s`+"\n")
    stdout.flush()
if (n-1)%(k+1)<1 or n==1:
    output(0)
else:
    output((n-1)%(k+1))
while 1:
    p = input()
    if p>=n: exit(0)
    q = n-p
    p += (q-1)%(k+1)
    if p>=n: exit(1)
    output(p)
0