結果

問題 No.412 花火大会
ユーザー rlangevinrlangevin
提出日時 2023-08-25 12:40:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 61,148 KB
最終ジャッジ日時 2024-06-06 07:17:17
合計ジャッジ時間 1,882 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,156 KB
testcase_01 AC 39 ms
52,252 KB
testcase_02 AC 35 ms
53,424 KB
testcase_03 AC 36 ms
52,748 KB
testcase_04 AC 36 ms
52,404 KB
testcase_05 AC 36 ms
51,872 KB
testcase_06 AC 40 ms
58,764 KB
testcase_07 AC 40 ms
59,236 KB
testcase_08 AC 35 ms
52,964 KB
testcase_09 AC 35 ms
51,776 KB
testcase_10 AC 36 ms
52,152 KB
testcase_11 AC 35 ms
52,192 KB
testcase_12 AC 38 ms
52,308 KB
testcase_13 AC 36 ms
53,004 KB
testcase_14 AC 36 ms
51,824 KB
testcase_15 AC 35 ms
51,836 KB
testcase_16 AC 37 ms
51,876 KB
testcase_17 AC 35 ms
53,160 KB
testcase_18 AC 43 ms
61,148 KB
testcase_19 AC 40 ms
60,792 KB
testcase_20 AC 41 ms
58,980 KB
testcase_21 AC 41 ms
60,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

B = sorted(list(map(int, input().split())))
N = int(input())
E = sorted(list(map(int, input().split())))
ans = 0
for a in range(N):
    for b in range(a + 1, N):
        for c in range(b + 1, N):
            if B[0] > E[a] or B[1] > E[b] or B[2] > E[c]:
                continue
            ans += 2 ** a

print(ans)
0