結果

問題 No.3081 HQ9+
ユーザー chineristACchineristAC
提出日時 2021-04-01 20:55:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 441 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 60,784 KB
最終ジャッジ日時 2024-06-01 02:32:50
合計ジャッジ時間 2,184 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
60,304 KB
testcase_01 AC 44 ms
60,212 KB
testcase_02 AC 44 ms
59,548 KB
testcase_03 AC 43 ms
60,328 KB
testcase_04 AC 43 ms
60,244 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 43 ms
59,860 KB
testcase_09 AC 43 ms
59,872 KB
testcase_10 AC 44 ms
59,804 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 44 ms
60,668 KB
testcase_15 AC 43 ms
59,852 KB
testcase_16 AC 44 ms
59,916 KB
testcase_17 AC 43 ms
60,268 KB
testcase_18 AC 44 ms
59,960 KB
testcase_19 AC 44 ms
60,240 KB
testcase_20 AC 44 ms
60,548 KB
testcase_21 AC 44 ms
60,060 KB
testcase_22 AC 44 ms
60,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

sq = {i**2:i for i in range(10**4)}

N = int(input())
S = input()
k = S.count("Q")
if not k:
    print(-1)
else:
    if not k in sq:
        print(-1)
    else:
        Q_cnt = sq[k]
        if N%Q_cnt:
            print(-1)
        else:
            L = N//Q_cnt
            T = [S[i:i+L] for i in range(0,N,L)]
            if all(T[0]==T[i] for i in range(len(T))):
                print(T[0])
            else:
                print(-1)
0