結果
問題 | No.149 碁石の移動 |
ユーザー |
|
提出日時 | 2018-12-14 13:20:37 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 13 |
ソースコード
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'))