結果
問題 | No.149 碁石の移動 |
ユーザー | Yug_min_null |
提出日時 | 2021-11-11 01:20:19 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 350 bytes |
コンパイル時間 | 1,927 ms |
コンパイル使用メモリ | 185,396 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-21 19:46:27 |
合計ジャッジ時間 | 2,709 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 13 |
ソースコード
#define _GLIBCXX_DEBUG #define ll long long #include <bits/stdc++.h> using namespace std; using Graph = vector<vector<int>>; int main(){ int AW, AB, BW, BB; cin >> AW >> AB >> BW >> BB; int C, D; cin >> C >> D; int ABB = min(C, AB), ABW = C - ABB; AW -= ABW, BW += ABW, BB += ABB; int BAW = min(D, BW); AW += BAW; cout << AW << endl; }