結果

問題 No.2828 Remainder Game
ユーザー elpheelphe
提出日時 2024-08-03 11:24:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 901 ms
コンパイル使用メモリ 68,800 KB
実行使用メモリ 25,208 KB
平均クエリ数 17.60
最終ジャッジ日時 2024-08-03 11:24:29
合計ジャッジ時間 4,155 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
25,196 KB
testcase_01 AC 69 ms
24,940 KB
testcase_02 AC 69 ms
24,928 KB
testcase_03 AC 71 ms
25,196 KB
testcase_04 AC 68 ms
25,184 KB
testcase_05 AC 71 ms
24,568 KB
testcase_06 AC 64 ms
24,568 KB
testcase_07 AC 68 ms
24,568 KB
testcase_08 AC 64 ms
25,208 KB
testcase_09 AC 68 ms
24,952 KB
testcase_10 AC 65 ms
24,568 KB
testcase_11 AC 65 ms
24,568 KB
testcase_12 AC 65 ms
24,824 KB
testcase_13 AC 65 ms
25,208 KB
testcase_14 AC 70 ms
24,568 KB
testcase_15 AC 65 ms
24,568 KB
testcase_16 AC 65 ms
24,824 KB
testcase_17 AC 65 ms
24,952 KB
testcase_18 AC 64 ms
24,824 KB
testcase_19 AC 64 ms
24,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;

int main()
{
	cin.tie(nullptr);
	ios::sync_with_stdio(false);

	int N, sum = 0, i, M, R, C;
	cin >> N;

	for (M = 2, R = 1; M / 2 <= N; M *= 2)
	{
		cout << M << ' ' << M / 2 << '\n' << R;
		for (++R; R != M; ++R)
			cout << ' ' << R;
		cout << '\n' << flush;

		cin >> C;
		sum += M / 2 * C;
	}

	cout << "0 1\n" << sum << '\n' << flush;
	return 0;
}
0