結果

問題 No.412 花火大会
ユーザー maspymaspy
提出日時 2020-03-06 18:55:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 578 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-04-22 04:11:15
合計ジャッジ時間 1,752 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#!/usr/bin/env python3
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines


# %%
B, C, D, N, *E = map(int, read().split())

# %%
E.sort()
B, C, D = sorted([B, C, D])

# %%
dp = [1, 0, 0, 0]
for x in E:
    newdp = dp[:]
    if x >= B:
        newdp[1] += dp[0]
    else:
        newdp[0] += dp[0]
    if x >= C:
        newdp[2] += dp[1]
    else:
        newdp[1] += dp[1]
    if x >= C:
        newdp[3] += dp[2]
    else:
        newdp[2] += dp[2]
    newdp[3] += dp[3]
    dp = newdp


# %%
print(dp[3])
0