博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
pat1040:有几个PAT
阅读量:6833 次
发布时间:2019-06-26

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

#include "stdio.h"int main(){	int p = 0, a = 0, t = 0;	char c;	while(scanf("%c", &c) && ('\n' != c))	{		if('P' == c)			++p;		else if('A' == c)			a += p;		else if('T' == c)			t = (t + a) % 1000000007;	}	printf("%d\n", t);	return 0;}

转载于:https://www.cnblogs.com/gavanwanggw/p/7349821.html

你可能感兴趣的文章
听到两个程序员聊天——A:“借我1K块。”
查看>>
Oracle ROWID
查看>>
重构可让SQL提高可维护性,可读性以及效能性
查看>>
java多线程例子
查看>>
fabric自动部署
查看>>
linux 命令小抄
查看>>
前端必读:浏览器内部工作原理
查看>>
C Socket Programming for Linux with a Server and Client Example Code
查看>>
6天通吃树结构—— 第一天 二叉查找树
查看>>
vs2005/vs2008和sql2005 的安装顺序
查看>>
powerdesigner 设置自动增长列(identity)和默认值
查看>>
Click Button to change the color of TextView
查看>>
oracle preparestmt 插入时间
查看>>
Java系的几种WebServer和ApplicationServer
查看>>
Android之菜单二——上下文菜单
查看>>
JavaScript中onmouseover时如何让鼠标指针变成一个小手状
查看>>
clear:both; 用法 什么时候用
查看>>
三层结构
查看>>
【简报】超棒的拖放式文件上传javascript类库:FileDrop
查看>>
连续子数组的最大和
查看>>