結果

問題 No.8081 HQ9+
ユーザー chineristACchineristAC
提出日時 2021-04-01 20:55:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 441 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 59,904 KB
最終ジャッジ日時 2024-12-21 04:48:24
合計ジャッジ時間 2,198 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
59,008 KB
testcase_01 AC 46 ms
59,008 KB
testcase_02 AC 48 ms
59,136 KB
testcase_03 AC 48 ms
59,520 KB
testcase_04 AC 48 ms
58,752 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 50 ms
59,008 KB
testcase_09 AC 50 ms
59,008 KB
testcase_10 AC 49 ms
59,068 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 48 ms
58,880 KB
testcase_15 AC 50 ms
59,008 KB
testcase_16 AC 46 ms
58,752 KB
testcase_17 AC 49 ms
58,752 KB
testcase_18 AC 48 ms
59,392 KB
testcase_19 AC 47 ms
59,008 KB
testcase_20 AC 49 ms
59,264 KB
testcase_21 AC 48 ms
59,520 KB
testcase_22 AC 49 ms
59,904 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