結果

問題 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
コンパイル時間 164 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,560 KB
最終ジャッジ日時 2024-06-01 04:32:58
合計ジャッジ時間 13,638 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 517 ms
44,184 KB
testcase_05 AC 516 ms
43,928 KB
testcase_06 AC 511 ms
43,788 KB
testcase_07 AC 514 ms
44,304 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 516 ms
44,300 KB
testcase_12 AC 526 ms
44,044 KB
testcase_13 AC 528 ms
44,176 KB
testcase_14 AC 526 ms
44,176 KB
testcase_15 AC 526 ms
44,044 KB
testcase_16 AC 521 ms
43,792 KB
testcase_17 AC 520 ms
44,172 KB
testcase_18 AC 524 ms
43,784 KB
testcase_19 AC 526 ms
44,380 KB
testcase_20 AC 520 ms
43,920 KB
testcase_21 AC 525 ms
44,264 KB
testcase_22 AC 525 ms
43,788 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