よじろめ覚書

私の理解度重視のソースコードです。

2019-07-12から1日間の記事一覧

ABC037A - 饅頭

ABC

問題:A - 饅頭 #include <algorithm> #include <iostream> using namespace std; int main(void) { int a, b, c; cin.tie(0); ios::sync_with_stdio(false); cin >> a >> b >> c; cout << c / min(a, b) << "\n"; return 0; }</iostream></algorithm>