結果

問題 No.2828 Remainder Game
ユーザー titiatitia
提出日時 2024-08-03 05:16:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,592 KB
平均クエリ数 24.00
最終ジャッジ日時 2024-08-03 05:17:00
合計ジャッジ時間 4,183 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
27,464 KB
testcase_01 AC 95 ms
27,080 KB
testcase_02 AC 98 ms
27,592 KB
testcase_03 AC 109 ms
27,080 KB
testcase_04 AC 90 ms
27,208 KB
testcase_05 AC 91 ms
27,088 KB
testcase_06 AC 90 ms
27,352 KB
testcase_07 AC 91 ms
27,224 KB
testcase_08 AC 95 ms
26,968 KB
testcase_09 AC 92 ms
27,224 KB
testcase_10 AC 90 ms
26,840 KB
testcase_11 AC 94 ms
26,960 KB
testcase_12 AC 91 ms
27,096 KB
testcase_13 AC 91 ms
27,224 KB
testcase_14 AC 90 ms
27,096 KB
testcase_15 AC 98 ms
27,344 KB
testcase_16 AC 100 ms
27,216 KB
testcase_17 AC 100 ms
26,960 KB
testcase_18 AC 99 ms
26,960 KB
testcase_19 AC 97 ms
27,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())

ANS=0

for i in range(1,12):
    x=2**i

    print(x,x//2,flush=True)
    LIST=[]
    for j in range(x//2,x):
        LIST.append(j)

    print(*LIST,flush=True)

    C=int(input())
    ANS+=x//2*C

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