結果

問題 No.3081 HQ9+
ユーザー pockynypockyny
提出日時 2021-04-01 21:39:10
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 787 bytes
コンパイル時間 687 ms
コンパイル使用メモリ 78,512 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-23 05:45:20
合計ジャッジ時間 1,756 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 2 ms
4,376 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 1 ms
4,380 KB
testcase_18 AC 3 ms
4,376 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 3 ms
4,376 KB
testcase_21 AC 3 ms
4,376 KB
testcase_22 AC 4 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <set>
using namespace std;
int main(){
    int i,n; cin >> n;
    string s; cin >> s;
    int cnt = 0;
    set<int> st;
    for(i=0;i<n;i++){
        if(s[i]=='H'){
            cout << -1 << endl;
            return 0;
        }
        if(s[i]=='Q') cnt++;
    }
    for(i=1;i*i<=n;i++) st.insert(i*i);
    if(!st.count(cnt)){
        cout << -1 << endl;
        return 0;
    }
    if(cnt==1){
        cout << s << endl;
        return 0;
    }
    int j = -1;
    for(i=1;i*i<=n;i++){
        if(i*i==cnt) j = i;
    }
    if(n%j!=0){
        cout << -1 << endl;
        return 0;
    }
    string t,u;
    for(i=0;i<n/j;i++) t.push_back(s[i]);
    while(u.size()<n) u += t;
    if(u!=s) cout << -1 << endl;
    else cout << t << endl;
}
0