結果

問題 No.2828 Remainder Game
ユーザー miya145592miya145592
提出日時 2024-08-03 00:01:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 76,808 KB
平均クエリ数 22.00
最終ジャッジ日時 2024-08-03 00:01:48
合計ジャッジ時間 3,687 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
76,328 KB
testcase_01 AC 102 ms
75,968 KB
testcase_02 AC 102 ms
75,388 KB
testcase_03 AC 110 ms
76,264 KB
testcase_04 AC 113 ms
76,228 KB
testcase_05 AC 100 ms
76,336 KB
testcase_06 AC 103 ms
75,172 KB
testcase_07 AC 102 ms
76,136 KB
testcase_08 AC 101 ms
76,588 KB
testcase_09 AC 102 ms
76,808 KB
testcase_10 AC 100 ms
76,052 KB
testcase_11 AC 104 ms
75,112 KB
testcase_12 AC 105 ms
76,088 KB
testcase_13 AC 106 ms
75,828 KB
testcase_14 AC 107 ms
76,264 KB
testcase_15 AC 112 ms
75,532 KB
testcase_16 AC 112 ms
75,000 KB
testcase_17 AC 104 ms
75,688 KB
testcase_18 AC 102 ms
75,980 KB
testcase_19 AC 103 ms
76,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N = int(input())
ans = 0
for i in range(1, 11):
    M = 2**i
    K = M//2
    R = []
    for j in range(K):
        R.append(M-j-1)
    print(M, K, flush=True)
    print(*R, flush=True)
    C = int(input())
    ans += 2**(i-1)*C
print(0, 1, flush=True)
print(ans, flush=True)
0