結果
問題 | No.457 (^^*) |
ユーザー | Konton7 |
提出日時 | 2019-05-18 09:17:24 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 753 bytes |
コンパイル時間 | 114 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 17,824 KB |
最終ジャッジ日時 | 2024-09-17 06:09:24 |
合計ジャッジ時間 | 4,764 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
17,568 KB |
testcase_01 | AC | 30 ms
10,752 KB |
testcase_02 | AC | 31 ms
10,752 KB |
testcase_03 | AC | 32 ms
10,752 KB |
testcase_04 | AC | 30 ms
10,624 KB |
testcase_05 | AC | 30 ms
10,624 KB |
testcase_06 | AC | 30 ms
10,624 KB |
testcase_07 | AC | 46 ms
10,624 KB |
testcase_08 | AC | 136 ms
10,752 KB |
testcase_09 | AC | 631 ms
10,624 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
s = input() left_list = [] right_list = [] astr_list = [] hat_list = [] for i in range(len(s)): if s[i] == "(": left_list.append(i) elif s[i] == ")": right_list.append(i) elif s[i] == "*": astr_list.append(i) left_counter = 0 right_counter = 0 for i in left_list: right_for_i = [ j for j in right_list if j > i+2 ] for j in right_for_i: for k in range(i,j): if s[k] == "*": if s[k:j+1].count("^") >= 2: right_counter += 1 break for k in range(j,i,-1): if s[k] == "*": if s[i:k].count("^") >= 2: left_counter += 1 break print(left_counter,right_counter)