結果
| 問題 |
No.8081 HQ9+
|
| コンテスト | |
| ユーザー |
square1001
|
| 提出日時 | 2021-04-01 21:58:26 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 242 bytes |
| コンパイル時間 | 1,175 ms |
| コンパイル使用メモリ | 70,496 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-12-21 06:17:22 |
| 合計ジャッジ時間 | 1,638 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 15 WA * 6 |
ソースコード
#include <cmath>
#include <iostream>
using namespace std;
int main() {
int N;
string S;
cin >> N >> S;
int B = int(sqrt(N));
if(S == string(B * B, 'Q')) {
cout << string(B, 'Q') << endl;
}
else {
cout << -1 << endl;
}
return 0;
}
square1001