結果

問題 No.2828 Remainder Game
ユーザー miya145592miya145592
提出日時 2024-08-02 22:38:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 846 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 81,852 KB
平均クエリ数 51.00
最終ジャッジ日時 2024-08-02 22:38:58
合計ジャッジ時間 4,034 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 92 ms
69,696 KB
testcase_16 AC 95 ms
69,504 KB
testcase_17 AC 93 ms
70,912 KB
testcase_18 AC 94 ms
69,748 KB
testcase_19 AC 93 ms
69,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(l, r, m):
    if len(ans)==5:
        return 0
    used.add((l, r))
    k = r-l
    rr = []
    for i in range(l, r):
        rr.append(i)
    print(m, k, flush=True)
    print(*rr, flush=True)
    global cnt
    cnt += 1
    if cnt>=30:
        print(0, 1, flush=True)
        print(1, flush=True)
        exit()
    c = int(input())
    if c==0:
        return 0
    if k==1:
        for _ in range(c):
            ans.append(l)
        return c
    # left
    if (l, (l+r)//2) not in used:
        ret = f(l, (l+r)//2, m)
    # right
    if c-ret>0:
        if ((l+r)//2, r) not in used:
            f((l+r)//2, r, m)
    return c
import sys
input = sys.stdin.readline
N = int(input())
l = 1
r = N+1
ans = []
cnt = 0
used = set()
# left
f(l, (l+r)//2, N+1)
# right
f((l+r)//2, r, N+1)
print(0, 1, flush=True)
print(sum(ans), flush=True)
0