結果

問題 No.149 碁石の移動
ユーザー konabe
提出日時 2018-06-28 09:36:56
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 617 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-30 23:18:19
合計ジャッジ時間 1,405 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 4
other WA * 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
0