結果

問題 No.149 碁石の移動
ユーザー pofpof
提出日時 2019-07-07 23:59:14
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-05 20:34:50
合計ジャッジ時間 1,270 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

Aw,Ab = map(int,input().split())
Bw,Bb = map(int,input().split())
c,d = map(int,input().split())

if Ab >= c:
    Ab-=c
    Bb+=c
else:
    Ab, Bb, Aw, Bw = 0, Bb + Ab, Aw - (c - Ab), Bw + (c - Ab)
#print(Aw,Ab,Bw,Bb)

if Bw >= d:
    Bw -= d
    Aw += d
else:
    Bw ,Aw, Bb, Ab = 0, Aw + Bw, Bb - (d-Bw), Ab + (d-Bw)
#print(Aw,Ab,Bw,Bb)

print(Aw)
0