結果

問題 No.3081 HQ9+
ユーザー da_abda_ab
提出日時 2021-04-01 23:27:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 294 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,556 KB
最終ジャッジ日時 2024-12-21 07:16:48
合計ジャッジ時間 13,960 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 524 ms
44,308 KB
testcase_05 AC 516 ms
44,168 KB
testcase_06 AC 518 ms
44,436 KB
testcase_07 AC 526 ms
44,556 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 515 ms
44,060 KB
testcase_12 AC 525 ms
44,336 KB
testcase_13 AC 510 ms
44,556 KB
testcase_14 AC 529 ms
44,308 KB
testcase_15 AC 519 ms
44,312 KB
testcase_16 AC 541 ms
43,920 KB
testcase_17 AC 531 ms
44,552 KB
testcase_18 AC 513 ms
43,916 KB
testcase_19 AC 515 ms
43,920 KB
testcase_20 AC 516 ms
44,300 KB
testcase_21 AC 536 ms
43,924 KB
testcase_22 AC 529 ms
43,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 3081 : HQ9+

import numpy as np
from sys import stdin

output=stdin.readline().rstrip('\n')
output=sorted(list(output))
if output[0]!='Q' or output[len(output)-1]!='Q':
    code=-1
elif np.sqrt(len(output)).is_integer():
    code='Q'*int(np.sqrt(len(output)))
else:
    code=-1
print(code)


0