結果
問題 | No.457 (^^*) |
ユーザー | Mr.Fuku |
提出日時 | 2018-08-08 22:24:48 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,520 bytes |
コンパイル時間 | 144 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-09-23 04:04:12 |
合計ジャッジ時間 | 1,530 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,880 KB |
testcase_01 | AC | 29 ms
10,496 KB |
testcase_02 | AC | 29 ms
10,624 KB |
testcase_03 | AC | 29 ms
10,752 KB |
testcase_04 | AC | 30 ms
10,624 KB |
testcase_05 | AC | 29 ms
10,624 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 38 ms
10,880 KB |
testcase_13 | AC | 43 ms
11,008 KB |
testcase_14 | AC | 34 ms
11,008 KB |
testcase_15 | AC | 38 ms
10,880 KB |
testcase_16 | AC | 42 ms
10,880 KB |
testcase_17 | AC | 33 ms
11,008 KB |
testcase_18 | AC | 30 ms
10,624 KB |
testcase_19 | AC | 30 ms
10,624 KB |
ソースコード
s = list(input()) len_s = len(s) close_list = [0]*len_s face_l = [] face_r = [] cnt_l = 0 cnt_r = 0 def readface(): global face fa_l = [] fa_r = [] close_cnt = 0 for i in range(len_s-1,-1,-1): x = s[i] if x==")": close_cnt+=1 elif x=="^": if len(fa_l)>0: fa_l.append(i) if len(fa_l)==3: face_l.append([fa_l[-1],fa_l[0]]) fa_l = [] fa_r.append(i) elif x=="*": if len(fa_l)==0: fa_l.append(i) if len(fa_r)>1: fa_r.append(i) face_r.append([fa_r[-1],fa_r[-3]]) fa_r = [] close_list[i]=close_cnt def delmin(n): global face_l,face_r d_list = [] for i in range(len(face_l)): if face_l[i][0]<n: d_list.append(i) else: break d_list.reverse() for i in d_list: del face_l[i] d_list = [] for i in range(len(face_r)): if face_r[i][0]<n: d_list.append(i) else: break d_list.reverse() for i in d_list: del face_r[i] def check(light): global cnt_l,cnt_r if len(face_l)>0: cnt_l += close_list[face_l[0][1]] if len(face_r)>0: cnt_r += close_list[face_r[0][1]] readface() face_l.sort() face_r.sort() for light in range(len_s): if s[light]=="(": delmin(light) check(light) print(cnt_l,cnt_r)