結果
問題 | No.205 マージして辞書順最小 |
ユーザー | fmhr |
提出日時 | 2015-05-08 23:34:42 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 766 bytes |
コンパイル時間 | 89 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 13,568 KB |
最終ジャッジ日時 | 2024-07-05 20:41:42 |
合計ジャッジ時間 | 3,927 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | RE | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
# coding:utf-8 D = int(input()) C = 'xxxxxxxxxxxxxxx' + input() C = C + input() + 'xxxxxxxxxxxxxxxxx' ans = [0] for i in range(len(C)+1): for j in range(i, len(C)+1): e = C[i:j] # xの連続チェック flag = 0 for f in range(len(e)): if e[f-1] == 'x' and e[f] == 'o': flag = 1 if e[f-1] == 'o' and e[f] == 'x' and flag == 1: flag = 2 break # xの数 if flag != 2: for k in range(len(e)): if D > 0: if 1 <= e.count('x') <= D: ans.append(len(e)) else: if e.count('x') <= D: ans.append(len(e)) print(max(ans))