随笔分类 -  模拟

上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 23 下一页
摘要:time limit per test4 seconds memory limit per test256 megabytes inputstandard input outputstandard output Anton likes to play chess. Also, he ... 阅读全文
posted @ 2017-10-06 19:22 AWCXV 阅读(153) 评论(0) 推荐(0)
摘要:time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard output Recently Anton found a box with digit... 阅读全文
posted @ 2017-10-06 19:22 AWCXV 阅读(313) 评论(0) 推荐(0)
摘要:time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard output Anton likes to play chess, and so doe... 阅读全文
posted @ 2017-10-06 19:22 AWCXV 阅读(189) 评论(0) 推荐(0)
摘要:time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard output Gennady is one of the best child dent... 阅读全文
posted @ 2017-10-06 19:22 AWCXV 阅读(103) 评论(0) 推荐(0)
摘要:time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard output A schoolboy named Vasya loves readin... 阅读全文
posted @ 2017-10-06 19:22 AWCXV 阅读(146) 评论(0) 推荐(0)
摘要:time limit per test3 seconds memory limit per test256 megabytes inputstandard input outputstandard output The semester is already ending, so D... 阅读全文
posted @ 2017-10-06 19:22 AWCXV 阅读(129) 评论(0) 推荐(0)
摘要:time limit per test 1 second memory limit per test 256 megabytes input standard input output standard outputAyrat is looking for the perfect c... 阅读全文
posted @ 2017-10-06 19:22 AWCXV 阅读(125) 评论(0) 推荐(0)
摘要:time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard output One day, the Grasshopper was jumping ... 阅读全文
posted @ 2017-10-06 19:22 AWCXV 阅读(233) 评论(0) 推荐(0)
摘要:time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard output Vasiliy has an exam period which will... 阅读全文
posted @ 2017-10-06 19:22 AWCXV 阅读(107) 评论(0) 推荐(0)
摘要:time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard output Vasiliy spent his vacation in a sanat... 阅读全文
posted @ 2017-10-06 19:22 AWCXV 阅读(81) 评论(0) 推荐(0)
摘要:time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard output Polycarp urgently needs a shovel! He ... 阅读全文
posted @ 2017-10-06 19:22 AWCXV 阅读(115) 评论(0) 推荐(0)
摘要:time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard output Little Vlad is fond of popular comput... 阅读全文
posted @ 2017-10-06 19:22 AWCXV 阅读(92) 评论(0) 推荐(0)
摘要:time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard output Grigoriy, like the hero of one famous... 阅读全文
posted @ 2017-10-06 19:22 AWCXV 阅读(152) 评论(0) 推荐(0)
摘要:time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard output You are given names of two days of th... 阅读全文
posted @ 2017-10-06 19:22 AWCXV 阅读(96) 评论(0) 推荐(0)
摘要:Time Limit: 3 second Memory Limit: 2 MB问题描述输入一个字符串,内有数字和非数字字符。如A123X456Y7A,302ATB567BC,统计共有多少个整数, 并输出字符串中所有连续(指不含非数字字符)的数字所组成的整数。如果没找到输出0,最大整数... 阅读全文
posted @ 2017-10-06 19:22 AWCXV 阅读(186) 评论(0) 推荐(0)
摘要:Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 47 Accepted Submission(s): 12Probl... 阅读全文
posted @ 2017-10-06 19:22 AWCXV 阅读(132) 评论(0) 推荐(0)
摘要:【链接】h在这里写链接【题意】时针、分钟、秒针走不过去。问你从t1时刻能不能走到t2时刻【题解】看看时针、分钟、秒针的影响就好。看看是不是在整时的位置就好。然后看看影响到x不能到y;然后从t1开始逆时针或顺时针一直走【错的次数】0【反思】在这了写反思【代码】#include using namesp... 阅读全文
posted @ 2017-10-06 19:13 AWCXV 阅读(121) 评论(0) 推荐(0)
摘要:【链接】h在这里写链接【题意】在这里写题意【题解】枚举它是在连接处,还是就是整个字符串就好。【错的次数】0【反思】在这了写反思【代码】#include using namespace std;const int N = 100;string s;string ts[N+10];int main(){... 阅读全文
posted @ 2017-10-06 19:13 AWCXV 阅读(113) 评论(0) 推荐(0)
摘要:【题目链接】:http://codeforces.com/contest/779/problem/E【题意】 给你n个长度为m的二进制数 (有一些是通过位运算操作两个数的形式给出); 然后有一个未知数字,用符号’?’表示; (所有的数字都是长度为m的二进制数); 然后让你确定这个’... 阅读全文
posted @ 2017-10-04 18:45 AWCXV 阅读(231) 评论(0) 推荐(0)
摘要:【题目链接】:https://leetcode.com/contest/leetcode-weekly-contest-26/problems/longest-uncommon-subsequence-ii/【题意】 字符串变成多个了; (不止两个) 让你求最长不公共子序列 【题解... 阅读全文
posted @ 2017-10-04 18:45 AWCXV 阅读(126) 评论(0) 推荐(0)

上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 23 下一页