結果

問題 No.706 多眼生物の調査
ユーザー gorugo30gorugo30
提出日時 2021-02-24 11:43:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 238 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 257,208 KB
最終ジャッジ日時 2024-09-24 12:12:35
合計ジャッジ時間 2,971 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,780 KB
testcase_01 AC 37 ms
54,696 KB
testcase_02 AC 38 ms
54,448 KB
testcase_03 AC 42 ms
55,924 KB
testcase_04 AC 83 ms
61,564 KB
testcase_05 AC 422 ms
94,464 KB
testcase_06 AC 1,428 ms
257,208 KB
testcase_07 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = [input() for i in range(N)]
T = ""
for i in range(N):
    T += S[i]
maxeye = 0
eyen = 0
for i in range(1, 1000):
    x = T.count("(" + "^" * i + ")")
    if x >= maxeye:
        maxeye = x
        eyen = i
print(eyen)
0