結果
問題 | No.149 碁石の移動 |
ユーザー | matrie |
提出日時 | 2020-12-01 08:05:56 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 317 bytes |
コンパイル時間 | 95 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-09-13 02:49:05 |
合計ジャッジ時間 | 1,485 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
10,496 KB |
testcase_01 | AC | 32 ms
10,752 KB |
testcase_02 | WA | - |
testcase_03 | AC | 30 ms
10,624 KB |
testcase_04 | WA | - |
testcase_05 | AC | 31 ms
10,624 KB |
testcase_06 | AC | 30 ms
10,624 KB |
testcase_07 | WA | - |
testcase_08 | AC | 30 ms
10,624 KB |
testcase_09 | AC | 30 ms
10,624 KB |
testcase_10 | AC | 30 ms
10,752 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
Aw,Ab = map(int, input().split()) Bw,Bb = map(int, input().split()) c,d = map(int, input().split()) #print([Aw,Ab,Bw,Bb],c) Aw -= max(0,c-Ab) Ab -= min(Ab,c) Bw += max(0,c-Ab) Bb += min(Ab,c) #print([Aw,Ab,Bw,Bb],d) Bw -= min(Bw,d) Bb -= max(0,d-Bw) Aw += min(Bw,d) Ab += max(0,d-Bw) #print([Aw,Ab,Bw,Bb]) print(Aw)