A. 24 Game
time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

Little X used to play a card game called "24 Game", but recently he has found it too easy. So he invented a new game.

Initially you have a sequence of n integers: 1, 2, ..., n. In a single step, you can pick two of them, let's denote them a and b, erase them from the sequence, and append to the sequence either a + b, or a - b, or a × b.

After n - 1 steps there is only one number left. Can you make this number equal to 24?

Input

The first line contains a single integer n (1 ≤ n ≤ 105).

Output

If it's possible, print "YES" in the first line. Otherwise, print "NO" (without the quotes).

If there is a way to obtain 24 as the result number, in the following n - 1 lines print the required operations an operation per line. Each operation should be in form: "a op b = c". Where a and b are the numbers you've picked at this operation; op is either "+", or "-", or "*";c is the result of corresponding operation. Note, that the absolute value of c mustn't be greater than 1018. The result of the last operation must be equal to 24. Separate operator sign and equality sign from numbers with spaces.

If there are multiple valid answers, you may print any of them.

Sample test(s)
input
1
output
NO
input
8
output
YES
8 * 7 = 56
6 * 5 = 30
3 - 4 = -1
1 - 2 = -1
30 - -1 = 31
56 - 31 = 25
25 + -1 = 24

其实就是sb题

注意到每4个数可以消掉

n<4直接打出NO

n=4到7打表

大于7的对4取mod之后各种乱搞

#include<cstdio>
#include<iostream>
#include<cstring>
#include<cstdlib>
#include<cmath>
#include<algorithm>
#include<ctime>
#include<set>
#define LL long long
using namespace std;
inline LL read()
{
LL x=0,f=1;char ch=getchar();
while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
return x*f;
}
int n;
int main()
{
scanf("%d",&n);
if (n<4){printf("NO\n");return 0;}
int s;
if(n%4==0)printf("YES\n1 * 2 = 2\n2 * 3 = 6\n6 * 4 = 24\n"),s=n-4;
else if (n%4==1)printf("YES\n4 * 5 = 20\n20 + 2 = 22\n22 + 3 = 25\n25 - 1 = 24\n"),s=n-5;
else if (n%4==2)printf("YES\n5 * 6 = 30\n30 - 4 = 26\n26 - 3 = 23\n23 - 1 = 22\n22 + 2 = 24\n"),s=n-6;
else if (n%4==3)printf("YES\n7 + 6 = 13\n13 + 5 = 18\n18 + 4 = 22\n22 + 3 = 25\n25 - 2 = 23\n23 + 1 = 24\n"),s=n-7;
for(int j=n-s+1;j<=n;j+=2)
printf("%d - %d = 1\n",j+1,j);
for (int j=1;j<=s/4;j++)
printf("1 - 1 = 0\n");
for (int j=1;j<=s/4;j++)
printf("24 + 0 = 24\n");
}

  

最新文章

  1. Android和JavaScript相互调用的方法
  2. Dom随手记
  3. 分享10条Visual Studio 2012的开发使用技巧
  4. [译]在Mac上运行ASP.NET 5
  5. java 入门 第二季3
  6. SY全局系统字段
  7. js 日期时间控制器
  8. DATAGUARD常用管理命令
  9. [python3.5][PyUserInput]模拟鼠标和键盘模拟
  10. SpringBoot+MyBatis+MySQL读写分离
  11. 基于SoftRoCE 了解RDMA
  12. 使用Pabot并行运行RF案例
  13. webstorm 设置 sass自动编译问题
  14. android之发送Get或Post请求至服务器接口
  15. JMeter之修改Sampler响应数据的编码格式
  16. xagrs 指定参数位置
  17. 使用sphinx自动提取python中的注释成为接口文档
  18. jquery改变元素上下排列的顺序
  19. Linux服务器---基础设置
  20. C# WebAPI中使用Swagger

热门文章

  1. MySQL调试
  2. T-SQL 脚本
  3. gcc的stdcall扩展
  4. Linux系统编程(13)——Shell的基本语法
  5. UESTC_冬马党 CDOJ 882
  6. UESTC_棋盘游戏 CDOJ 578
  7. linux查看CPU高速缓存(cache)信息
  8. [Ruby学习总结]Ruby中的类
  9. Jekins安装
  10. Ffmpeg和SDL如何同步视频(转)