포럼
문제 COCI00098

Jabuka

스페셜 저지 — 출력을 사용자 정의 프로그램으로 검사하므로 여러 정답이 인정될 수 있습니다.
설명

Mirko has \(R\) red and \(G\) green apples to share with some of his friends, so that all of them receive the same number of red apples and also the same number of green apples. Mirko does not like apples himself so he doesn't want to be left with any apples afterward.

For example, if Mirko has \(4\) red and \(8\) green apples, he can divide them in three ways:

  1. One friend gets all \(4\) red and all \(8\) green apples;
  2. Two friends each receive \(2\) red apples and \(4\) green apples;
  3. Four friends each receive \(1\) red and \(2\) green apples.

Write a program that outputs all ways for Mirko to divide his apples. Assume Mirko has an infinite supply of friends to give apples to.

제약
입력 형식

The first line contains two positive integers \(R\) and \(G\) separated by a space (\(1 \le R, G \le 1\,000\,000\,000\)), the numbers of red and green apples.

출력 형식

For each possible distribution, output three integers \(N\), \(X\) and \(Y\) on one line. The number \(N\) is the number of friends that will receive apples. The numbers \(X\) and \(Y\) tell how many red and green apples each of them will receive.

Each distribution needs to be output exactly once. You may output the distributions in any order.

서브태스크
서브태스크점수설명

Subtask 1

50점
예제 1
입력
4 8
출력
1 4 8
2 2 4
4 1 2
예제 2
입력
15 12
출력
3 5 4
1 15 12
예제 3
입력
42 105
출력
1 42 105
3 14 35
7 6 15
21 2 5
문제 정보

riseoj 작성

출처 COCI 2008/2009 Contest 5

평가 및 의견

Jabuka

개요
출제자 난이도 Unrated 레이팅 미적용 의견 0 / 1 공개 집계 (커뮤니티 난이도, 주요 주제, 품질)는 의견이 충분히 모이면 공개됩니다.

Log in to rate problems.

개별 의견

아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.

풀이 제출

Jabuka

게스트로 둘러보고 있습니다. 로그인하면 풀이를 제출하고 진행 상황을 확인할 수 있습니다. 로그인하고 제출하기
공개
C++20 Tab 들여쓰기 · Ctrl+/ 주석 토글 · Enter 자동 들여쓰기
1 1 1 0 공백: 4 · UTF-8