結果

問題 No.2194 兄弟の掛け引き
ユーザー elphe
提出日時 2025-02-14 13:30:35
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 454 bytes
コンパイル時間 866 ms
コンパイル使用メモリ 85,352 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2025-02-14 13:30:37
合計ジャッジ時間 1,923 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdint>
#include <set>

using namespace std;

int main()
{
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	
	uint32_t A, B, C;
	cin >> A >> B >> C;

	uint32_t cur;
	set<uint32_t> ans;
	if (C <= B)
	{
		cur = C;
		if (cur % A == 0)
			ans.insert(cur / A);
	}

	cur = C + B;
	if (cur % A == 0)
		ans.insert(cur / A);

	if (ans.empty()) cout << "-1\n";
	else for (const auto given : ans) cout << given << '\n';

	return 0;
}
0