結果

問題 No.495 (^^*) Easy
ユーザー nanaenanae
提出日時 2017-03-24 22:22:34
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 712 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-07-06 02:28:54
合計ジャッジ時間 868 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def solve():
    lc, rc = 0, 0
    s = input()

    for i in range(len(s) - 1):
        if s[i] == '(':
            if s[i + 1] == '^':
                lc += 1
            else:
                rc += 1

    print(lc, rc)
    
def debug(x, table):
    for name, val in table.items():
        if x is val:
            print('DEBUG:{} -> {}'.format(name, val), file=sys.stderr)
            return None

if __name__ == '__main__':
    solve()
0