1100 Mars Numbers (20 分)难度: 一般 / 知识点: 模拟

Posted 辉小歌

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1100 Mars Numbers (20 分)难度: 一般 / 知识点: 模拟相关的知识,希望对你有一定的参考价值。


https://pintia.cn/problem-sets/994805342720868352/problems/994805367156883456
乙级的原题。。

#include<bits/stdc++.h>
using namespace std;
string a[13]="tret","jan","feb","mar","apr","may","jun","jly","aug","sep","oct","nov","dec";
string b[20]="","tam","hel","maa","huh","tou","kes","hei","elo","syy","lok","mer","jou";
int main(void)

	int n; cin>>n;
	string s; getline(cin,s);
	while(n--)
	
	    getline(cin,s); 
		if(s[0]>='0'&&s[0]<='9')
		
			int temp=stoi(s);
			if(temp<=12) cout<<a[temp]<<endl;
			else if(temp%13==0) cout<<b[temp/13]<<endl;
			else cout<<b[temp/13]<<" "<<a[temp%13]<<endl;
		
		else
		
			int sum=0;
			string x;
			stringstream l(s);
			while(l>>x)  
			
				for(int i=0;i<13;i++) if(x==a[i]) sum+=i;
				for(int i=1;i<13;i++) if(x==b[i]) sum+=i*13;
			
			cout<<sum<<endl;
		
	
	return 0;

以上是关于1100 Mars Numbers (20 分)难度: 一般 / 知识点: 模拟的主要内容,如果未能解决你的问题,请参考以下文章

1100 Mars Numbers (20分)

1100 Mars Numbers(20 分)

1100 Mars Numbers (20分)

STL_A1100 Mars Numbers (20 分)

1100 Mars Numbers (20 分)难度: 一般 / 知识点: 模拟

PAT 1100 Mars Numbers