結果

問題 No.457 (^^*)
ユーザー pluto77pluto77
提出日時 2017-02-09 13:56:12
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 758 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 1,553 ms
コンパイル使用メモリ 76,584 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-06-07 15:46:01
合計ジャッジ時間 6,265 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
75,136 KB
testcase_01 AC 76 ms
75,424 KB
testcase_02 AC 74 ms
75,256 KB
testcase_03 AC 77 ms
75,136 KB
testcase_04 AC 76 ms
75,648 KB
testcase_05 AC 77 ms
75,136 KB
testcase_06 AC 81 ms
76,416 KB
testcase_07 AC 87 ms
77,092 KB
testcase_08 AC 92 ms
77,820 KB
testcase_09 AC 94 ms
77,696 KB
testcase_10 AC 135 ms
77,976 KB
testcase_11 AC 330 ms
78,208 KB
testcase_12 AC 758 ms
77,824 KB
testcase_13 AC 355 ms
77,440 KB
testcase_14 AC 80 ms
76,328 KB
testcase_15 AC 754 ms
77,824 KB
testcase_16 AC 353 ms
77,440 KB
testcase_17 AC 81 ms
76,416 KB
testcase_18 AC 75 ms
75,520 KB
testcase_19 AC 76 ms
75,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_457

def f(ss):
 res=0
 for i in xrange(len(s)):
  k=0
  if s[i]!='(':
   continue
  for j in xrange(i+1,len(s)):
   if s[j]==ss[k%3]:
    k+=1
   if s[j]==')' and k>=3:
    res+=1
 return res

s=raw_input()
print f('^^*'),f('*^^')
0