結果

問題 No.3081 HQ9+
ユーザー KudeKude
提出日時 2021-04-01 21:45:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 301 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 86,772 KB
実行使用メモリ 72,156 KB
最終ジャッジ日時 2023-08-23 05:49:27
合計ジャッジ時間 3,140 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 75 ms
71,060 KB
testcase_04 AC 75 ms
71,164 KB
testcase_05 AC 76 ms
71,372 KB
testcase_06 AC 73 ms
71,284 KB
testcase_07 AC 75 ms
71,060 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 77 ms
71,268 KB
testcase_12 AC 74 ms
71,300 KB
testcase_13 AC 75 ms
71,192 KB
testcase_14 AC 74 ms
70,896 KB
testcase_15 AC 74 ms
71,204 KB
testcase_16 AC 76 ms
71,404 KB
testcase_17 AC 75 ms
71,280 KB
testcase_18 AC 76 ms
71,800 KB
testcase_19 AC 73 ms
71,380 KB
testcase_20 AC 78 ms
72,156 KB
testcase_21 AC 77 ms
72,100 KB
testcase_22 AC 76 ms
72,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
if set(s) | {'+', 'Q'} != {'+', 'Q'}:
    print(-1)
    exit()
#[x, r)
cnt = 0
for r in range(1, n + 1):
    cnt += s[r-1] == 'Q'
    if cnt * r == n:
        code = s[:r]
        break
else:
    print(-1)
    exit()
if code * cnt == s:
    print(code)
else:
    print(-1)
0