結果
問題 | No.149 碁石の移動 |
ユーザー |
|
提出日時 | 2015-02-12 23:40:04 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 324 bytes |
コンパイル時間 | 523 ms |
コンパイル使用メモリ | 60,020 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-24 02:46:09 |
合計ジャッジ時間 | 1,242 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 13 |
ソースコード
#include <iostream> #include <cstdio> #include <vector> #include <algorithm> #include <utility> using namespace std; int main() { int aw, ab, bw, bb, c, d; cin >> aw >> ab >> bw >> bb >> c >> d; int pick = max(0, c - ab); aw -= pick; bw += pick; pick = min(bw, d); aw += pick; cout << aw << endl; return 0; }