Climbing Worm HDU - 1049 (簡單模擬題)
#include <stdio.h>
int main()
{
int n, u, d;
while(~scanf("%d %d %d", &n, &u, &d))
{
if(n == 0)
break;
int t = 0;
while(1)
{
n -= u;
t++;
if(n <= 0) //在這個地方跳出迴圈
break;
n += d;
t++;
}
printf("%d\n", t);
}
return 0;
}
相關推薦
Climbing Worm HDU - 1049 (簡單模擬題)
#include <stdio.h> int main() { int n, u, d; while(~scanf("%d %d %d", &n, &u, &d)) &nbs
HihoCoder1052基因工程(簡單模擬題)
修改方法 ace lib stream 方法 div 最小 mes 大寫 描述 小Hi和小Ho正在進行一項基因工程實驗。他們要修改一段長度為N的DNA序列,使得這段DNA上最前面的K個堿基組成的序列與最後面的K個堿基組成的序列完全一致。 例如對於序列"ATCGA
PAT-PAT (Advanced Level) Practise 1005. Spell It Right (20) (簡單模擬題)【一星級】
Given a non-negative integer N, your task is to compute the sum of all the digits of N, and output every digit of the sum in English. Input Specification:
HDU 6124 17多校7 Euler theorem(簡單思維題)
panel please problem urn return bottom -1 fan std Problem Description HazelFan is given two positive integers a,b, and he wants to calcu
Oil Skimming HDU - 4185(匹配板題)
win back memory ogr printf source efi maximum ger Oil Skimming Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Jav
A + B Problem Too HDU - 2101(語言訓練題)
This problem is also a A + B problem,but it has a little difference,you should determine does (a+b) could be divided with 86.For example ,if (A+B)
Fibonacci Again (簡單規律題)
There are another kind of Fibonacci numbers: F(0) = 7, F(1) = 11, F(n) = F(n-1) + F(n-2) (n>=2). Input Input consists of a sequence of
51Nod1081 子段求和(簡單模擬求和)
直接模擬就完事了! #include<iostream> #include<cstring> #include<algorithm> #include<cst
Friend Number II(簡單思路題)
Given a positive integer x, let S(x) denotes the sum of all x’s digits. Two integers x and y are friend numbers if S(x)=S(y). Her
hdu 1039 (字串水題)
不滿足的標記,純水 #include <iostream> #include <cstdio> #include <cstring> using namespace std; int main() { char s[25];
2019浙大校賽--G--Postman(簡單思維題)
src += std amp 畫圖 long div scanf fin 一個思維水題 題目大意為,一個郵遞員要投遞N封信,一次從郵局來回只能投遞K封。求最短的投遞總距離。需註意,最後一次投遞後無需返回郵局。 本題思路要點: 1、最後一次投遞無需返回郵局,故最後一
HDU 4930 Fighting the Landlords(扯淡模擬題)
href blank 。。 clear break 輸出 family fig set Fighting the Landlords 大意: 鬥地主。。。。 分別給出兩把手牌,肯定都合法。每張牌大小順序是Y (i.e. colored Joker) &g
HDU 6023-Automatic Judge(模擬題)
分析 主要就是多次ac取時間最短的那次。 -=和%=1000的問題 如果沒有ac則罰時不計,都知道的 我卻忘考慮了。 #include<bits/stdc++.h> using namespace std; const int maxn=1e5+5; struct
Climbing Worm(語言訓練題)
ime Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 23349 Accepted Submission(s): 15984 Problem
hdu 5867 (一到一千的模擬題)
Water problem Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Other
HDU 2648(搜索題,哈希表)
cin ostream pac cstring using mem == ring scan #include<iostream> #include<map> #include<string> #include<cstring&
多線程練習(簡單模擬火車站多窗口同時售票)
火車 thread art this 模擬 練習 lis span 對象 模擬火車站售票窗口同時售票 public class xianchenglianxi { public static void main(String arg[]){
大魚吃小魚(簡單模擬)
一個 入棧 nco http spa println code tar pre 題目:http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1289 從左往右將數字壓入棧裏(想象成一個水平向右的棧),如果
POJ 3923 Ugly Windows(——考察思維縝密性的模擬題)
題意 stdio.h i++ lis stop 字母 include ide 輸入 題目鏈接: http://poj.org/problem?id=3923 題意描述: 輸入一個n*m的屏幕 該屏幕內有至少一個對話框(每個對話框都有對應的字母表示) 判斷並輸出該屏幕內處於最
刷題總結——拆網線(noip模擬 貪心)
lib pen n) ems true 情況 for clu time 題目: 給定一顆樹··在保證有k個點與其它點連接的情況下問最少保留多少條邊···· 樹的節點樹n和k均小於