よじろめ覚書

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

2019-09-19から1日間の記事一覧

ABC072A - Sandglass2

ABC

問題:A - Sandglass2 #include <algorithm> #include <iostream> using namespace std; int main(void) { int x, t; cin.tie(0); ios::sync_with_stdio(false); cin >> x >> t; cout << max(0, x - t) << "\n"; return 0; }</iostream></algorithm>