結果

問題 No.412 花火大会
ユーザー はむ吉🐹はむ吉🐹
提出日時 2017-02-12 20:01:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 723 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-09 10:06:08
合計ジャッジ時間 1,535 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 27 ms
10,880 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 27 ms
10,880 KB
testcase_11 AC 26 ms
10,752 KB
testcase_12 AC 27 ms
10,880 KB
testcase_13 AC 28 ms
10,880 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 26 ms
10,880 KB
testcase_17 AC 27 ms
10,880 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 26 ms
10,880 KB
testcase_21 AC 28 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import bisect
import collections


def solve(bcd, es):
    def p2(x):
        return 1 << x
    reqs = sorted(bcd)
    s = collections.Counter(bisect.bisect(reqs, e) for e in es)
    res = p2(s[0]) * (p2(s[1]) - 1) * (p2(s[2]) - 1) * (p2(s[3]) - 1)
    res += p2(s[0]) * (p2(s[1]) - 1) * (p2(s[3]) - 1 - s[3])
    res += p2(s[0]) * (p2(s[2]) - 1 - s[2]) * (p2(s[3]) - 1)
    res += p2(s[0]) * (p2(s[2]) - 1) * (p2(s[3]) - 1 - s[3])
    res += p2(s[0]) * (p2(s[3]) - 1 - s[3] - s[3] * (s[3] - 1) // 2)
    return res


def main():
    bcd = (int(x) for x in input().split())
    _ = input()
    es = (int(x) for x in input().split())
    print(solve(bcd, es))


if __name__ == '__main__':
    main()
0