結果
問題 | No.457 (^^*) |
ユーザー | ebicochineal |
提出日時 | 2016-12-09 00:05:04 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 471 bytes |
コンパイル時間 | 312 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 72,752 KB |
最終ジャッジ日時 | 2024-05-06 09:47:19 |
合計ジャッジ時間 | 5,693 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
59,188 KB |
testcase_01 | AC | 38 ms
52,936 KB |
testcase_02 | AC | 39 ms
53,444 KB |
testcase_03 | AC | 37 ms
53,108 KB |
testcase_04 | AC | 37 ms
52,988 KB |
testcase_05 | AC | 38 ms
52,776 KB |
testcase_06 | AC | 37 ms
52,828 KB |
testcase_07 | AC | 49 ms
59,408 KB |
testcase_08 | AC | 59 ms
61,844 KB |
testcase_09 | AC | 131 ms
64,172 KB |
testcase_10 | AC | 1,283 ms
72,752 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
def main(): S = input() l, r = [], [] lcnt = rcnt = 0 for i in range(len(S)): if S[i] == '(' : l += [i] if S[i] == ')' : r += [i] for s in l: for e in r: if s < e: i = S.find('*', s+1, e) if i > -1: lcnt += S.count('^', s+1, S.rfind('*', s+1, e)) > 1 rcnt += S.count('^', i, e) > 1 print(lcnt, rcnt) if __name__ == '__main__': main()