UVALive 5968
#include <map>
#include <set>
#include <list>
#include <cmath>
#include<cctype>
#include <ctime>
#include <deque>
#include <stack>
#include <queue>
#include <cstdio>
#include <string>
#include <vector>
#include<climits>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <algorithm>
#define LL long long
#define PI 3.1415926535897932626
using namespace std;
int gcd(int a, int b) {return a % b == ? b : gcd(b, a % b);}
#define MAXN 1000
char str[MAXN];
int main()
{
//freopen("sample.txt","r",stdin);
int T;
int kase=;
scanf("%d",&T);
while (T--)
{
scanf("%s",str);int ans1=,ans2=;
int len=strlen(str);//str[len]='#';
for (int i=;i<len-;i++)
{
if (str[i]=='S')
{
if (str[i+]==str[i]) ans2++;
else ans1++;
}
}
printf("Case %d: %d / %d\n",kase++,ans2,ans1);
}
return ;
}
UVALive 5968的更多相关文章
- UVALive - 4108 SKYLINE[线段树]
		UVALive - 4108 SKYLINE Time Limit: 3000MS 64bit IO Format: %lld & %llu Submit Status uDebug ... 
- UVALive - 3942 Remember the Word[树状数组]
		UVALive - 3942 Remember the Word A potentiometer, or potmeter for short, is an electronic device wit ... 
- UVALive - 3942 Remember the Word[Trie DP]
		UVALive - 3942 Remember the Word Neal is very curious about combinatorial problems, and now here com ... 
- HDU 5968 异或密码
		p.MsoNormal { margin: 0pt; margin-bottom: .0001pt; text-align: justify; font-family: Calibri; font-s ... 
- 思维 UVALive 3708 Graveyard
		题目传送门 /* 题意:本来有n个雕塑,等间距的分布在圆周上,现在多了m个雕塑,问一共要移动多少距离: 思维题:认为一个雕塑不动,视为坐标0,其他点向最近的点移动,四舍五入判断,比例最后乘会10000 ... 
- UVALive 6145 Version Controlled IDE(可持久化treap、rope)
		题目链接:https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8&page=show_ ... 
- HDU 5968:异或密码(暴力)
		http://acm.hdu.edu.cn/showproblem.php?pid=5968 题意:中文题意. 思路:一开始不会做,后来发现数据范围很小,而且那个数要是连续的,所以可能把所有情况枚举出 ... 
- UVALive 6508  Permutation Graphs
		Permutation Graphs Time Limit:3000MS Memory Limit:0KB 64bit IO Format:%lld & %llu Submit ... 
- UVALive 6500 Boxes
		Boxes Time Limit:3000MS Memory Limit:0KB 64bit IO Format:%lld & %llu Submit Status Pract ... 
随机推荐
- word文档下划线无法显示的解决方法
			在编辑文档的时候经常会遇到下划线无法显示的情况,如图: 如果遇到不能在姓名后面加下划线的情况,我们该怎么做? 请看下面的图解: 1.首先点击左上角的office图标 2.点击右下角“word选项” 3 ... 
- 读书笔记 effective c++ Item 19 像设计类型(type)一样设计类
			1. 你需要重视类的设计 c++同其他面向对象编程语言一样,定义了一个新的类就相当于定义了一个新的类型(type),因此作为一个c++开发人员,大量时间会被花费在扩张你的类型系统上面.这意味着你不仅仅 ... 
- 06  Frequently Asked Questions (FAQ) 常见问题解答 (常见问题)
			Frequently Asked Questions (FAQ) Origins 起源 What is the purpose of the project? What is the history ... 
- No.10 selenium学习之路之通过元素定位获取属性
			1. implicitly_wait()隐形等待.等待页面加载完成,作用是全局的. 时间可以设置的长,短时间也没有影响.直到设置的时间耗完 时间耗完也不会报错 2.获取title值 driver.ti ... 
- 13 在 O(1) 时间内删除链表节点
			删除链表的一个结点,用下一个结点覆盖掉要删除的结点,再释放掉要删结点的下一个结点的内存 Java: public ListNode deleteNode(ListNode head, ListNode ... 
- hdu 1085  有num1个 1 ,num2个 2 ,num3个 5  (母函数)
			有num1个 1 ,num2个 2 ,num3个 5问它们不能组成的最小正整数是谁 样例的母函数 (1+X)(1+X2)(1+X5+X10+X15)展开后 X4的系数为0 Sample Input1 ... 
- 第五届CCF软件能力认证
			1.数列分段 问题描述 给定一个整数数列,数列中连续相同的最长整数序列算成一段,问数列中共有多少段? 输入格式 输入的第一行包含一个整数n,表示数列中整数的个数. 第二行包含n个整数a1, a2, … ... 
- 为django平台生成模拟用户,建立用户组,并将用户加入组
			书接上篇BLOG. 当我们可以用manage.py自定义命令来生成模拟数据时, 我们面对的就是如何操作ORM的问题了. 这两天,我为我们的内部系统的所有数据表,都生成了模拟数据. 有几个心得,记录于此 ... 
- USACO 6.3 Cryptcowgraphy
			CryptcowgraphyBrian Dean The cows of Farmer Brown and Farmer John are planning a coordinated escape ... 
- 使用Caffe训练适合自己样本集的AlexNet网络模型,并对其进行分类
			1.在开始之前,先简单回顾一下几个概念. Caffe(Convolution Architecture For Feature Extraction-卷积神经网络框架):是一个清晰,可读性高,快速的深 ... 
