乙級(Basic Level) 1018 人口普查
阿新 • • 發佈:2018-08-22
class str NPU sin 題目 basic split and split()
題目描述
某城鎮進行人口普查,得到了全體居民的生日。現請你寫個程序,找出鎮上最年長和最年輕的人。
這裏確保每個輸入的日期都是合法的,但不一定是合理的——假設已知鎮上沒有超過200歲的老人,而今天是2014年9月6日,所以超過200
歲的生日和未出生的生日都是不合理的,應該被過濾掉。
輸入描述:
輸入在第一行給出正整數N,取值在(0, 105];隨後N行,每行給出1個人的姓名(由不超過5個英文字母組成的字符串)、以及
按“yyyy/mm/dd”(即年/月/日)格式給出的生日。題目保證最年長和最年輕的人沒有並列。
輸出描述:
在一行中順序輸出有效生日的個數、最年長人和最年輕人的姓名,其間以空格分隔。
輸入例子:
5
John 2001/05/12
Tom 1814/09/06
Ann 2121/01/30
James 1814/09/05
Steve 1967/11/20
輸出例子:
3 Tom John
Python: a = int(input()) b = [‘‘,‘‘] c = [‘‘,‘‘] num = 0 for i in range(a): a2 = input().split() a3 = a2[1].split(‘/‘) if (a3[0]<‘1814‘) or (a3[0]==‘1814‘ and a3[1]<‘09‘) or (a3[0]==‘1814‘ and a3[1]==‘09‘ and a3[2]<‘06‘): continue elif ((a3[0]>‘2014‘) or (a3[0]==‘2014‘ and a3[1]>‘09‘) or (a3[0]==‘2014‘ and a3[1]==‘09‘ and a3[2]>‘06‘)): continue if a2[1]<b[1] or b[1]==‘‘: b[0] = a2[0] b[1] = a2[1] if a2[1] > c[1]: c[0] = a2[0] c[1] = a2[1] num += 1 print(num,b[0],c[0])
C++:
#include <stdio.h> #include<string> using namespace std; int main(){ int a,b,c,a2=0,b2,c2,a3=0,b3,c3,i,num,num2=0; char name[10]; string young,old; scanf("%d",&num); for(i=0;i<num;i++){ scanf("%s",&name); scanf("%d/%d/%d",&a,&b,&c); if( (a<1814) || (a==1814 && b<9) || (a==1814 && b==9 && c<6) ) continue; else if( (a>2014) || (a==2014 && b>9) || (a==2014 && b==9 && c>6)) continue; if( ((a2<a) || (a2==a && b2<b) || (a2==a && b2==b && c2<=c)) || a2==0){ a2 = a; b2 = b; c2 = c; old = name; } if( ((a3>a) || (a3==a && b3>b) || (a3==a && b3==b && c3>c)) || a3==0){ a3 = a; b3 = b; c3 = c; young = name; } num2++; } printf("%d %s %s",num2,young.c_str(),old.c_str()); return 0; }
乙級(Basic Level) 1018 人口普查