結果

問題 No.149 碁石の移動
ユーザー utsumidaisukeutsumidaisuke
提出日時 2018-12-14 13:20:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,336 KB
最終ジャッジ日時 2024-09-25 05:01:08
合計ジャッジ時間 1,418 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
14,868 KB
testcase_01 AC 37 ms
12,516 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 43 ms
14,620 KB
testcase_06 AC 46 ms
15,300 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 36 ms
12,300 KB
testcase_10 AC 39 ms
13,888 KB
testcase_11 AC 47 ms
14,004 KB
testcase_12 AC 43 ms
14,512 KB
testcase_13 AC 39 ms
12,980 KB
testcase_14 AC 41 ms
13,072 KB
testcase_15 AC 56 ms
16,856 KB
testcase_16 AC 70 ms
22,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

aw, ab = map(int,input().split())
bw, bb = map(int,input().split())

tob, toa = map(int,input().split())

al = ["b" for i in range(ab)]+["w" for i in range(aw)]
bl = ["b" for i in range(bb)]+["w" for i in range(bw)]

alr = al[tob:]

bl += al[:tob]
bl.sort()
bl.reverse()

ll = bl[:toa]+alr
print(ll.count('w'))
0