杭电acm
文章平均质量分 51
代码之间
路漫漫其修远矣,上下求索
展开
-
杭电acm之1106-排序
Problem Description输入一行数字,如果我们把这行数字中的‘5’都看成空格,那么就得到一行用空格分割的若干非负整数(可能有些整数以‘0’开头,这些头部的‘0’应该被忽略掉,除非这个整数就是由若干个‘0’组成的,这时这个整数就是0)。你的任务是:对这些分割得到的整数,依从小到大的顺序排序输出。 Input输入包含多组测试用例,每组输入数据只有一原创 2014-04-06 23:42:01 · 959 阅读 · 0 评论 -
杭电acm之1516--String Distance and Transform Process
Problem DescriptionString Distance is a non-negative integer that measures the distance between two strings. Here we give the definition. A transform list is a list of string, where each string, exc原创 2014-04-06 12:14:38 · 847 阅读 · 0 评论 -
Energy Conversion
#includeusing namespace std;int main(){ int T; long long N,M,V,K; cin>>T; while(T--){ int k=0; cin>>N>>M>>V>>K; if(M>=N) k=0 ; else{ if((M原创 2014-05-17 15:27:49 · 476 阅读 · 0 评论 -
杭电 1042 N! 大数相乘
Problem DescriptionGiven an integer N(0 ≤ N ≤ 10000), your task is to calculate N! InputOne N in one line, process to the end of file. OutputFor each N, output N! in one line.原创 2014-06-29 08:48:24 · 890 阅读 · 0 评论