結果

問題 No.2828 Remainder Game
ユーザー tassei903tassei903
提出日時 2024-08-02 22:38:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 668 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 76,956 KB
平均クエリ数 22.00
最終ジャッジ日時 2024-08-02 22:38:36
合計ジャッジ時間 3,828 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
76,076 KB
testcase_01 AC 112 ms
76,416 KB
testcase_02 AC 109 ms
76,144 KB
testcase_03 AC 109 ms
76,480 KB
testcase_04 AC 110 ms
75,764 KB
testcase_05 AC 112 ms
75,432 KB
testcase_06 AC 109 ms
76,848 KB
testcase_07 AC 110 ms
76,152 KB
testcase_08 AC 109 ms
76,612 KB
testcase_09 AC 109 ms
76,464 KB
testcase_10 AC 108 ms
75,388 KB
testcase_11 AC 108 ms
76,324 KB
testcase_12 AC 107 ms
75,328 KB
testcase_13 AC 110 ms
76,172 KB
testcase_14 AC 108 ms
75,384 KB
testcase_15 AC 107 ms
76,956 KB
testcase_16 AC 110 ms
76,540 KB
testcase_17 AC 109 ms
74,916 KB
testcase_18 AC 111 ms
75,440 KB
testcase_19 AC 107 ms
75,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

ni()
N = 10
ans = []
for i in range(N):
    m = 1 << (i+1)
    a = []
    for j in range(1 << i):
        a.append((1 << i) + j)
    print(m, len(a), flush = True)
    print(*a, flush = True)
    ans.append(ni())
s = 0
for i in range(N):
    s += ans[i] * (1 << i)

print(0, 1, flush = True)
print(s, flush = True)
0