結果
問題 | No.2239 Friday |
ユーザー |
![]() |
提出日時 | 2023-03-10 21:25:34 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 222 bytes |
コンパイル時間 | 2,751 ms |
コンパイル使用メモリ | 244,344 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-18 03:36:04 |
合計ジャッジ時間 | 3,504 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 4 WA * 16 |
ソースコード
#include <bits/stdc++.h>using namespace std;int main(){int a, b;cin >> a >> b;int ans = 1e9;for(int i = 0; i <= min(a, b); i++){ans = min(ans, a + b - 2 * i);}cout << ans << endl;}