hdu-2101
problem description
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)=98,you should output no for result.
input
each line will contain two integers a and b. process to end of file.
out put
for each case, if(a+b)%86=0,output yes in one line,else output no in one line.
sample input
1 18600 8600
sample output
noyes
問題簡述
輸入兩個整型a和b,求和後對86取餘。若(a+b)%86=0,則輸出「yes」,否則輸出「no」。
問題分析 &程式說明
利用while 函式實現**的迴圈呼叫。
ac通過的c++語言如下
除2取餘法
要求 給乙個十進位制數n,求出n二進位制各個數字的和 方法 除以2取餘法,將值相加即可 include using namespace std intmain cout ans endl return0 eg 6 110,有2個1 1023 1111111111,有10個1。如果把每位的數值做標記 ...
ACM整數性問題(nefu115和hdu2099)
首先要了解整除的基本性質 1.若a整除b且a整除c,則對任意的x,y有a整除xb yc。2.若a整除b且b不為0,則絕對值a小於等於絕對值b。3.若a整除b,則ca整除cb c不為0 4.若a整除b且b整除a,則a b。5.若a整除b且b整除c,則a整除c。下面來看一道簡單題nefu115 已知斐波...
求餘區間的求和類問題 離線 線段樹 HDU4228
題目大意 給乙個陣列a,他的順序是嚴格的單調增,然後有如下三個操作 加入乙個val到a陣列裡面去,加入的位置就是a i 1 刪除乙個a i val的值 查詢所有下標i 5 3的值 思路 線段樹 離線 首先因為線段樹中不支援新增 刪除操作的,所以只能離線把所有的val離散化以後放到區間裡面去。然後關鍵...