結果

問題 No.149 碁石の移動
ユーザー konabekonabe
提出日時 2018-06-28 09:36:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 617 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 10,784 KB
実行使用メモリ 7,964 KB
最終ジャッジ日時 2023-09-13 14:37:35
合計ジャッジ時間 1,429 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

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