結果

問題 No.257 N言っちゃダメゲーム (3)
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-09 03:05:37
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 234 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 82,704 KB
平均クエリ数 3.77
最終ジャッジ日時 2024-05-04 07:37:18
合計ジャッジ時間 4,608 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
68,424 KB
testcase_01 AC 84 ms
69,128 KB
testcase_02 AC 83 ms
69,488 KB
testcase_03 AC 90 ms
69,396 KB
testcase_04 AC 95 ms
68,636 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 83 ms
68,480 KB
testcase_08 AC 87 ms
69,104 KB
testcase_09 AC 85 ms
68,508 KB
testcase_10 AC 89 ms
69,944 KB
testcase_11 AC 88 ms
68,672 KB
testcase_12 AC 88 ms
68,688 KB
testcase_13 AC 84 ms
68,952 KB
testcase_14 AC 84 ms
69,176 KB
testcase_15 AC 85 ms
69,400 KB
testcase_16 AC 85 ms
69,900 KB
testcase_17 AC 83 ms
68,184 KB
testcase_18 AC 83 ms
69,164 KB
testcase_19 AC 83 ms
69,116 KB
testcase_20 AC 89 ms
69,344 KB
testcase_21 AC 95 ms
68,960 KB
testcase_22 AC 93 ms
69,712 KB
testcase_23 AC 91 ms
69,696 KB
testcase_24 AC 89 ms
69,288 KB
testcase_25 AC 87 ms
69,208 KB
testcase_26 AC 89 ms
69,368 KB
testcase_27 AC 94 ms
68,792 KB
testcase_28 AC 87 ms
69,732 KB
testcase_29 AC 85 ms
69,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
if  (n-1)%(k+1) == 0:
    print(0,flush=True)
    now=int(input())
else:
    now = 0

while True:
    a=((n-1)-now)%(k+1)
    print(a+now,flush=True)
    now = int(input())
    if now >= n:
        break
0