結果

問題 No.2828 Remainder Game
ユーザー ShirotsumeShirotsume
提出日時 2024-08-02 21:34:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 912 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 84,576 KB
平均クエリ数 28.00
最終ジャッジ日時 2024-08-02 21:34:40
合計ジャッジ時間 4,404 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
84,576 KB
testcase_01 AC 131 ms
83,680 KB
testcase_02 AC 139 ms
84,192 KB
testcase_03 AC 132 ms
83,936 KB
testcase_04 AC 136 ms
84,192 KB
testcase_05 AC 141 ms
84,200 KB
testcase_06 AC 137 ms
84,456 KB
testcase_07 AC 145 ms
84,456 KB
testcase_08 AC 131 ms
83,944 KB
testcase_09 AC 131 ms
84,456 KB
testcase_10 AC 133 ms
84,200 KB
testcase_11 AC 130 ms
83,816 KB
testcase_12 AC 144 ms
84,200 KB
testcase_13 AC 134 ms
84,328 KB
testcase_14 AC 131 ms
84,328 KB
testcase_15 AC 133 ms
84,192 KB
testcase_16 AC 132 ms
84,096 KB
testcase_17 AC 130 ms
84,192 KB
testcase_18 AC 132 ms
84,320 KB
testcase_19 AC 141 ms
83,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353

debug = False
n = ii()

if debug:
    a = [random.randint(1, n) for _ in range(5)]
    
def query(m, k, b):
    print(m, k, flush=True)
    print(*b, flush=True)
    if not debug:
        return ii()
    else:
        ans = 0
        for i in range(5):
            if a[i] % m in b:
                ans += 1
        return ans
def answer(x):
    print(0, 1)
    print(x, flush=True)
    if not debug:
        exit()
    else:
        assert sum(a) == x
ans = 0
for i in range(13):
    b = []
    for bit in range(1 << (i + 1)):
        if (bit >> i) & 1:
            b.append(bit)
    ret = query(1 << (i + 1), len(b), b)
    ans += ret * (1 << i)

answer(ans)
    
0