結果

問題 No.2828 Remainder Game
ユーザー KudeKude
提出日時 2024-08-02 21:32:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 183 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 75,496 KB
平均クエリ数 22.00
最終ジャッジ日時 2024-08-02 21:32:31
合計ジャッジ時間 4,154 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
74,968 KB
testcase_01 AC 111 ms
74,848 KB
testcase_02 AC 112 ms
75,104 KB
testcase_03 AC 113 ms
75,360 KB
testcase_04 AC 112 ms
74,848 KB
testcase_05 AC 113 ms
75,496 KB
testcase_06 AC 119 ms
74,728 KB
testcase_07 AC 112 ms
74,856 KB
testcase_08 AC 119 ms
75,368 KB
testcase_09 AC 112 ms
74,984 KB
testcase_10 AC 113 ms
74,760 KB
testcase_11 AC 112 ms
75,348 KB
testcase_12 AC 113 ms
75,360 KB
testcase_13 AC 112 ms
74,856 KB
testcase_14 AC 111 ms
74,856 KB
testcase_15 AC 111 ms
75,104 KB
testcase_16 AC 120 ms
74,712 KB
testcase_17 AC 113 ms
75,104 KB
testcase_18 AC 118 ms
74,848 KB
testcase_19 AC 113 ms
74,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = 0
for k in range(10):
    m = 1 << k + 1
    print(1 << k + 1, 1 << k)
    print(*range(1 << k, 1 << k + 1))
    ans += int(input()) << k
print(0, 1)
print(ans)
0