結果

問題 No.190 Dry Wet Moist
ユーザー pluto77pluto77
提出日時 2016-09-14 11:50:04
言語 Python2
(2.7.18)
結果
AC  
実行時間 393 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 23,612 KB
最終ジャッジ日時 2024-11-17 05:55:55
合計ジャッジ時間 6,045 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,816 KB
testcase_01 AC 11 ms
6,820 KB
testcase_02 AC 11 ms
6,820 KB
testcase_03 AC 11 ms
6,816 KB
testcase_04 AC 12 ms
6,820 KB
testcase_05 AC 13 ms
6,816 KB
testcase_06 AC 11 ms
6,816 KB
testcase_07 AC 13 ms
6,820 KB
testcase_08 AC 13 ms
6,816 KB
testcase_09 AC 12 ms
6,820 KB
testcase_10 AC 12 ms
6,816 KB
testcase_11 AC 12 ms
6,820 KB
testcase_12 AC 173 ms
13,064 KB
testcase_13 AC 218 ms
14,836 KB
testcase_14 AC 167 ms
12,772 KB
testcase_15 AC 235 ms
15,820 KB
testcase_16 AC 303 ms
18,396 KB
testcase_17 AC 43 ms
7,680 KB
testcase_18 AC 138 ms
11,656 KB
testcase_19 AC 298 ms
18,260 KB
testcase_20 AC 205 ms
14,468 KB
testcase_21 AC 32 ms
6,912 KB
testcase_22 AC 387 ms
23,484 KB
testcase_23 AC 323 ms
23,352 KB
testcase_24 AC 393 ms
23,612 KB
testcase_25 AC 11 ms
6,816 KB
testcase_26 AC 11 ms
6,820 KB
testcase_27 AC 219 ms
17,108 KB
testcase_28 AC 97 ms
11,012 KB
testcase_29 AC 124 ms
12,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_190

n=int(raw_input())
a=map(int,raw_input().split())
a.sort()
dry=wet=moist=0
l=0
r=2*n-1
while l<r:
 if a[l]+a[r]<0:
  dry+=1
  l+=1
  r-=1
 else:
  r-=1
l=0
r=2*n-1
while l<r:
 if a[l]+a[r]>0:
  wet+=1
  l+=1
  r-=1
 else:
  l+=1
l=0
r=2*n-1
while l<r:
 if a[l]+a[r]==0:
  moist+=1
  l+=1
  r-=1
 elif abs(a[l])-abs(a[r])<0:
  r-=1
 else:
  l+=1
  
print dry,wet,moist
0