結果

問題 No.1057 素敵な日
ユーザー wolgnikwolgnik
提出日時 2020-05-22 21:22:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 255 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 53,720 KB
最終ジャッジ日時 2024-10-05 14:34:43
合計ジャッジ時間 942 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
A, B = map(int, input().split())
if A < B: A, B = B, A
res = 0
for i in range(A + B):
  if i % 2: B -= 1
  else: A -= 1
  if i: res += 1
  if A < 0:
    res -= 1
    break
  if B < 0:
    res -= 1
    break
print(res)
0