結果

問題 No.412 花火大会
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-11 03:39:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 245 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 53,800 KB
最終ジャッジ日時 2024-09-11 03:39:52
合計ジャッジ時間 2,121 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,288 KB
testcase_01 WA -
testcase_02 AC 36 ms
53,008 KB
testcase_03 AC 36 ms
53,592 KB
testcase_04 AC 36 ms
53,800 KB
testcase_05 AC 36 ms
52,900 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 37 ms
51,884 KB
testcase_09 AC 36 ms
52,580 KB
testcase_10 AC 38 ms
52,164 KB
testcase_11 AC 35 ms
52,340 KB
testcase_12 AC 37 ms
52,828 KB
testcase_13 AC 36 ms
52,352 KB
testcase_14 AC 36 ms
52,892 KB
testcase_15 AC 35 ms
52,968 KB
testcase_16 AC 36 ms
53,404 KB
testcase_17 AC 38 ms
52,724 KB
testcase_18 AC 36 ms
52,864 KB
testcase_19 AC 38 ms
52,068 KB
testcase_20 AC 38 ms
52,128 KB
testcase_21 AC 36 ms
52,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a=list(map(int,input().split()))
n=int(input())
e=list(map(int,input().split()))
e.sort()
q=[1,0,0,0]
for v in e:
	q[3]+=q[3]+q[2]*(v>=a[2])
	q[2]+=q[2]*(v<a[2])+q[1]*(v>=a[1])
	q[1]+=q[1]*(v<a[1])+q[0]*(v>=a[0])
	q[0]+=q[0]*(v<a[0])
print(q[3])
0