結果

問題 No.2828 Remainder Game
ユーザー detteiuudetteiuu
提出日時 2024-08-02 23:34:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 76,780 KB
平均クエリ数 17.60
最終ジャッジ日時 2024-08-02 23:34:09
合計ジャッジ時間 4,024 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
75,948 KB
testcase_01 AC 106 ms
76,780 KB
testcase_02 AC 102 ms
75,980 KB
testcase_03 AC 125 ms
75,120 KB
testcase_04 AC 103 ms
75,432 KB
testcase_05 AC 111 ms
75,588 KB
testcase_06 AC 106 ms
69,756 KB
testcase_07 AC 100 ms
75,472 KB
testcase_08 AC 93 ms
69,768 KB
testcase_09 AC 101 ms
76,584 KB
testcase_10 AC 95 ms
70,540 KB
testcase_11 AC 97 ms
69,832 KB
testcase_12 AC 109 ms
70,020 KB
testcase_13 AC 92 ms
69,648 KB
testcase_14 AC 102 ms
75,708 KB
testcase_15 AC 93 ms
69,004 KB
testcase_16 AC 93 ms
69,076 KB
testcase_17 AC 92 ms
69,856 KB
testcase_18 AC 92 ms
69,660 KB
testcase_19 AC 99 ms
68,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

ans = 0
for i in range(10):
    R = []
    if 2**i > N:
        break
    for j in range(2**i, 2**(i+1)):
        R.append(j)
    print(2**(i+1), len(R))
    print(*R)
    ans += int(input())*2**i

print(0, 1)
print(ans)
0