結果

問題 No.2828 Remainder Game
ユーザー 👑 rin204rin204
提出日時 2024-08-02 21:32:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 82,816 KB
平均クエリ数 22.00
最終ジャッジ日時 2024-08-02 21:32:42
合計ジャッジ時間 3,874 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
81,948 KB
testcase_01 AC 112 ms
81,756 KB
testcase_02 AC 114 ms
82,160 KB
testcase_03 AC 117 ms
81,472 KB
testcase_04 AC 116 ms
82,192 KB
testcase_05 AC 114 ms
81,492 KB
testcase_06 AC 110 ms
80,840 KB
testcase_07 AC 109 ms
81,496 KB
testcase_08 AC 111 ms
80,892 KB
testcase_09 AC 115 ms
82,816 KB
testcase_10 AC 111 ms
81,628 KB
testcase_11 AC 115 ms
81,548 KB
testcase_12 AC 112 ms
82,088 KB
testcase_13 AC 111 ms
81,216 KB
testcase_14 AC 112 ms
82,260 KB
testcase_15 AC 112 ms
82,504 KB
testcase_16 AC 115 ms
82,208 KB
testcase_17 AC 112 ms
81,976 KB
testcase_18 AC 112 ms
82,160 KB
testcase_19 AC 125 ms
81,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

ans = 0
for i in range(10):
    m = 1024
    k = m // 2
    A = [j for j in range(m) if j >> i & 1]
    print(m, k, flush=True)
    print(*A, flush=True)
    res = int(input())
    ans += res << i

print(0, 1)
print(ans)
0