C. Product 1 Modulo N-Codeforces Round #716 (Div. 2)

Problem - 1514C - Codeforces

C. Product 1 Modulo N

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

Now you get Baby Ehab's first words: "Given an integer nn, find the longest subsequence of [1,2,…,n−1][1,2,…,n−1] whose product is 11 modulo nn." Please solve the problem.

A sequence bb is a subsequence of an array aa if bb can be obtained from aa by deleting some (possibly all) elements. The product of an empty subsequence is equal to 11.

Input

The only line contains the integer nn (2≤n≤1052≤n≤105).

Output

The first line should contain a single integer, the length of the longest subsequence.

The second line should contain the elements of the subsequence, in increasing order.

If there are multiple solutions, you can print any.

Examples

input

Copy

5

output

Copy

3
1 2 3 

input

Copy

8

output

Copy

4
1 3 5 7 

Note

In the first example, the product of the elements is 66 which is congruent to 11 modulo 55. The only longer subsequence is [1,2,3,4][1,2,3,4]. Its product is 2424 which is congruent to 44 modulo 55. Hence, the answer is [1,2,3][1,2,3].

=========================================================================

先对50以内的全部数字进行dfs打表找规律发现其实选的都是互质的数,唯一不同的是,有些数字选了n-1有些却没有选,我们可以对全部互质数的乘积进行判断,如果是1,那么直接输出答案,否则去掉一个n-1输出剩余即可。

# include<iostream>
# include<algorithm>
# include<math.h>
# include<queue>

using namespace std;
typedef long long int ll;

int ans[1000000+10];

int main()
{


   int n;

   cin>>n;

   int len=1;


   ll sum=1;

   for(int i=1;i<n;i++)
   {
       if(__gcd(i,n)==1)
       {

           ans[len]=i;


           sum*=i;
           sum%=n;

           len++;

       }
   }

   if(sum==1)
    {

         cout<<len-1<<endl;

         for(int i=1;i<=len-1;i++)
            {
                cout<<ans[i]<<" ";
            }
      }
      else
      {
          cout<<len-2<<endl;

          ll temp=1;

          for(int i=1;i<=len-2;i++)
          {
              cout<<ans[i]<<" ";

              temp*=ans[i];



          }


      }





    return 0;

}

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

秦三码

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值