博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ACdream HUT新生摸底训练赛 A 娜娜梦游仙境系列——诡异的钢琴 水
阅读量:5274 次
发布时间:2019-06-14

本文共 1028 字,大约阅读时间需要 3 分钟。

解题思路:

排序以后求gcd较判断即可。

解题代码:

// File Name: a.cpp// Author: darkdream// Created Time: 2015年04月12日 星期日 19时30分44秒#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define LL long longusing namespace std;int a[4];int gcd(int a, int b){ return b == 0 ?a:gcd(b,a%b);}int main(){ int t; scanf("%d",&t); while(t--) { for(int i = 1;i <= 3; i ++) scanf("%d",&a[i]); sort(a+1,a+1+3); int x , y ; x = gcd(a[1],a[2]); y = gcd(a[2],a[3]); if(a[1]/x == 4 && a[2]/x == 5) { if(a[2]/y == 5 && a[3]/y == 6) { printf("major\n"); continue; }else{ printf("noise\n"); } continue; }else if(a[1]/x == 5 && a[2]/x == 6){ if(a[2]/y == 4 && a[3]/y == 5) { printf("minor\n"); }else printf("noise\n"); continue; }else{ printf("noise\n"); continue; } }return 0;}
View Code

 

转载于:https://www.cnblogs.com/zyue/p/4423036.html

你可能感兴趣的文章
Javascript个人理解
查看>>
spring3.2.x 快速入门学习
查看>>
银行取款流程
查看>>
SqlServer Partition 分区表
查看>>
C# 使用xenocode混淆加密
查看>>
利用bat批处理,批量导入oracle的dmp格式的备份文件
查看>>
Python生成报表
查看>>
Shrio03 Authenticator、配置多个Realm、SecurityManager认证策略
查看>>
Dispatch Sources(转)
查看>>
JQuery操作attr、prop、val()/text()/html()、class属性
查看>>
【前端学习笔记】闭包的作用及案例
查看>>
ASP.NET中的session存储模式运用
查看>>
C# JSON字符串序列化与反序列化
查看>>
20140425 malloc和new不同 dynamic何时返回0
查看>>
hexo博客进阶-相册和独立域名
查看>>
【42.38%】【BZOJ 3196】二逼平衡树
查看>>
KD-tree详解
查看>>
mysql写存储过程根据时间变化增加工龄
查看>>
linux常见命令
查看>>
在Word中插入Excel对象
查看>>