結果

問題 No.190 Dry Wet Moist
ユーザー TawaraTawara
提出日時 2015-12-20 13:05:22
言語 Python2
(2.7.18)
結果
AC  
実行時間 452 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 32,124 KB
最終ジャッジ日時 2024-09-17 12:00:23
合計ジャッジ時間 5,272 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,816 KB
testcase_01 AC 12 ms
6,940 KB
testcase_02 AC 12 ms
6,940 KB
testcase_03 AC 11 ms
6,940 KB
testcase_04 AC 11 ms
6,944 KB
testcase_05 AC 12 ms
6,944 KB
testcase_06 AC 11 ms
6,940 KB
testcase_07 AC 15 ms
6,940 KB
testcase_08 AC 14 ms
7,040 KB
testcase_09 AC 12 ms
6,940 KB
testcase_10 AC 13 ms
6,940 KB
testcase_11 AC 13 ms
6,940 KB
testcase_12 AC 194 ms
17,624 KB
testcase_13 AC 234 ms
18,408 KB
testcase_14 AC 193 ms
17,524 KB
testcase_15 AC 257 ms
18,568 KB
testcase_16 AC 325 ms
20,104 KB
testcase_17 AC 50 ms
9,472 KB
testcase_18 AC 155 ms
17,104 KB
testcase_19 AC 315 ms
20,324 KB
testcase_20 AC 221 ms
18,224 KB
testcase_21 AC 35 ms
7,932 KB
testcase_22 AC 347 ms
24,180 KB
testcase_23 AC 452 ms
32,124 KB
testcase_24 AC 390 ms
24,052 KB
testcase_25 AC 12 ms
6,940 KB
testcase_26 AC 12 ms
6,944 KB
testcase_27 AC 269 ms
19,812 KB
testcase_28 AC 126 ms
16,800 KB
testcase_29 AC 161 ms
17,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter as C
N=input()*2;D=[];W=[]
def f(A,B,n,m):
	c=i=0
	for a in A:
		while i<m and a>=B[i]:i+=1
		if i^m:c+=1;i+=1
	n-=c
	return c+min(n,N)+max(0,n-N)/2
for a in map(int,raw_input().split()):D+=[a]*(a<0);W+=[-a]*(a>0)
D.sort();W.sort();d=len(D);w=len(W);N-=d+w;E=C(D);X=C(W)
print f(D,W,d,w),f(W,D,w,d),N/2+sum(min(E[k],X[k]) for k in E)
0