結果

問題 No.149 碁石の移動
ユーザー konabekonabe
提出日時 2018-06-28 09:37:15
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 627 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-30 23:18:20
合計ジャッジ時間 1,244 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

Aw, Ab = [int(i) for i in input().split()]
Bw, Bb = [int(i) for i in input().split()]
C, D = [int(i) for i in input().split()]

debug = False

print(Aw, Ab, Bw, Bb) if debug else 0
t = min([Ab, C])
Ab -= t  # Abが優先的に取られる
Bb += t  #
print(Aw, Ab, Bw, Bb) if debug else 0
Aw -= C-t  # 越えた場合、残りのAwが取られる
Bw += C-t  # 
print(Aw, Ab, Bw, Bb) if debug else 0

t = min([Bw, D])
Bw -= t  # Bwが優先的に取られる
Aw += t  # 
print(Aw, Ab, Bw, Bb) if debug else 0

Bb -= D-t  # 越えた場合、残りのBbが取られる
Ab += D-t  #
print(Aw, Ab, Bw, Bb) if debug else 0

print(Aw)
0