NOJ1088Gnome Sequencing——水题

来源:互联网 发布:向日葵虚拟局域网软件 编辑:程序博客网 时间:2024/05/18 15:31

Gnome Sequencing

时间限制(普通/Java):1000MS/3000MS          运行内存限制:65536KByte
总提交:236            测试通过:154

描述

In the book All Creatures of Mythology, gnomes are kind, bearded creatures, while goblins tend to be bossy and simple-minded. The goblins like to harass the gnomes by making them line up in groups of three, ordered by the length of their beards. The gnomes, being of different physical heights, vary their arrangements to confuse the goblins. Therefore, the goblins must actually measure the beards in centimeters to see if everyone is lined up in order.
Your task is to write a program to assist the goblins in determining whether or not the gnomes are lined up properly, either from shortest to longest beard or from longest to shortest.

输入

The input starts with line containing a single integer N, 0 < N < 30, which is the number of groups to process. Following this are N lines, each containing three distinct positive integers less than 100.

输出

There is a title line, then one line per set of beard lengths. See the sample output for capitalization and punctuation.

样例输入

3
40 62 77
88 62 77
91 33 18

样例输出

Gnomes:
Ordered
Unordered
Ordered

题目来源

ACM Mid-Central Regional 2009


#include<stdio.h>int main(){int n;scanf("%d",&n);printf("Gnomes:\n");while(n--){int x, y, z;scanf("%d%d%d",&x,&y,&z);printf("%s\n",((x>=y&&y>=z)||(x<=y&&y<=z))?"Ordered":"Unordered");}return 0;}


0 0