Codeforces Round #523 (Div. 2) A. Coins
A. Coins
題目連結:https://codeforc.es/contest/1061/problem/A
題意:
給出n和s,要在1-n中選數(可重複),問最少選多少數可以使其和為s。
題解:
貪心就行了。
程式碼如下:
#include <cstdio> #include <algorithm> #include <iostream> using namespace std; int main(){ int a,s; cin>>a>>s; cout<<s/a+(s%a!=0); return 0; }
相關推薦
Codeforces Round #523 (Div. 2) A. Coins
A. Coins 題目連結:https://codeforc.es/contest/1061/problem/A 題意: 給出n和s,要在1-n中選數(可重複),問最少選多少數可以使其和為s。 題解: 貪心就行了。 程式碼如下: #include <c
【Codeforces】Round #523 (Div. 2) A-F
A. Coins 貪心選儘量大的填 #include<bits/stdc++.h> using namespace std; typedef long long ll; int n,s,ans; int main(){ int i,j,mx
Codeforces Round #416 (Div. 2) A+B
src separate not sum redo swe tput output depend A. Vladik and Courtesy 2 seconds 256 megabytes At regular competition Vl
Codeforces Round #417 (Div. 2) A. Sagheer and Crossroads 模擬 枚舉
ces color 一次 name exit main cst space amp Codeforces Round #417 (Div. 2) A. Sagheer and Crossroads 模擬 枚舉 題意 一個紅綠燈 按逆時針方向一次給出各個路口的左轉,
Codeforces Round #422 (Div. 2) A. I'm bored with life 暴力
out line leave c++ ren round ... from cif A. I‘m bored with life Holidays have finished. Thanks to the help of t
Codeforces Round #306 (Div. 2) A
return code add stl ext scan java pac 一個 題意 給一個字符串(長度<=10^5)。問當中有沒有一個”BA”和一個”AB”呢?假設都有而且它們不反復(即ABA不算),輸出YES。否則輸出NO。 思路 一開
Codeforces Round #FF (Div. 2) A. DZY Loves Hash
turn esp while integer each lov article opera title DZY has a hash table with p buckets, numbered from 0 to p?-?1. He wants to ins
Codeforces Round #426 (Div. 2)A B C題+賽後小結
ase com || namespace inf exp test 鏈接 %d 最近比賽有點多,可是好像每場比賽都是被虐,單純磨礪心態的作用。最近講的內容也有點多,即便是點到為止很淺顯的版塊,刷了專題之後的狀態還是~"咦,能做,可是並沒有把握能A啊"。每場網絡賽,我似乎
Codeforces Round #422 (Div. 2) A-C
put math def flag tdi mem ostream bag cmp A. I‘m bored with life 水題 #include <iostream> #include <cstring> #include <
Codeforces Round #423 (Div. 2) A-C
include 組成 tro return for can sta har min A. Restaurant Tables 這裏看錯題意還wa了兩發.... 按題意模擬就行了 水題 #include <iostream> #include <
Codeforces Round #424 (Div. 2) A-C
namespace ios nim tmp main 一個 ... blog cin A. Unimodal Array 水題 #include <iostream> #include <cstring> #include <cst
Codeforces Round #363 (Div. 2) A-C
ani ++ string 表示 math ems 所有 output name A. Launch of Collider 找最近的R和L之間的距離 #include <iostream> #include <cstring> #inc
Codeforces Round #431 (Div. 2) A
... mda for index val because else into ces Where do odds begin, and where do they end? Where does hope emerge, and will they ever brea
【Codeforces Round #447 (Div. 2) A】QAQ
pro ont 題解 problem fde c語言 span bits endif 【鏈接】 我是鏈接,點我呀:) 【題意】 在這裏輸入題意 【題解】 C語言程序練習題 【代碼】 #include <bits/stdc++.h> using
Codeforces Round #197 (Div. 2) A. Helpful Maths【字符串/給一個連加計算式,只包含數字 1、2、3,要求重新排序,使得連加的數字從小到大】
asi man title problem beginning 排序 stand should cati A. Helpful Maths time limit per test 2 seconds memory limit per t
Codeforces Round #283 (Div. 2) A. Minimum Difficulty【一個數組定義困難值是兩個相鄰元素之間差的最大值。 給一個數組,可以去掉任意一個元素,問剩余數列的困難值的最小值是多少】
分析 options force minimum sta cif als 最小 技術分享 A. Minimum Difficulty time limit per test 2 seconds memory limit per test 256 mega
Codeforces Round #453 (Div. 2) a-c
!= force gpo n) return sizeof size nod amp A. Visiting a Friend 水題,但是需要註意段點初,及最後的位置 代碼如下: #include <iostream> #include <stdio.h
【Codeforces Round #457 (Div. 2) A】 Jamie and Alarm Snooze
als lar clu efi out .com bit source fin 【鏈接】 我是鏈接,點我呀:) 【題意】 在這裏輸入題意 【題解】 暴力往前走x分鐘就好。 直到出現7為止。 【代碼】 #include <bits/stdc++.h&
Codeforces Round #396(Div. 2) A. Mahmoud and Longest Uncommon Subsequence
color HA \n seq 字符 turn ces DC %s 【題意概述】 找兩個字符串的最長不公共子串。 【題目分析】 兩個字符串的最長不公共子串就應該是其中一個字符串本身,那麽判斷兩個字符串是否相等,如果相等,那麽肯定沒有公共子串,輸出“-1”.否則就
Codeforces Round #417 (Div. 2)-A. Sagheer and Crossroad
sca \n ret name nbsp style can turn ros 【題意概述】 在一個十字路口 ,給定紅綠燈的情況, 按逆時針方向一次給出各個路口的左轉,直行,右轉,以及行人車道,判斷汽車是否有可能撞到行人 【題目分析】 需要在邏輯上清晰