結果

問題 No.3081 HQ9+
ユーザー googol_S0googol_S0
提出日時 2021-04-01 21:30:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 75,992 KB
最終ジャッジ日時 2024-12-21 05:48:08
合計ジャッジ時間 2,067 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,484 KB
testcase_01 AC 39 ms
52,648 KB
testcase_02 AC 39 ms
52,404 KB
testcase_03 AC 38 ms
52,292 KB
testcase_04 AC 38 ms
52,896 KB
testcase_05 AC 38 ms
53,696 KB
testcase_06 AC 38 ms
53,216 KB
testcase_07 AC 39 ms
52,548 KB
testcase_08 AC 46 ms
59,792 KB
testcase_09 AC 39 ms
52,752 KB
testcase_10 AC 38 ms
52,948 KB
testcase_11 AC 38 ms
52,060 KB
testcase_12 AC 39 ms
52,120 KB
testcase_13 AC 44 ms
59,824 KB
testcase_14 AC 49 ms
62,440 KB
testcase_15 AC 45 ms
62,136 KB
testcase_16 AC 46 ms
62,008 KB
testcase_17 AC 47 ms
63,232 KB
testcase_18 AC 60 ms
75,992 KB
testcase_19 AC 45 ms
62,660 KB
testcase_20 AC 82 ms
75,764 KB
testcase_21 AC 82 ms
75,712 KB
testcase_22 AC 82 ms
75,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(x):
  if 'H' in x:
    return 1000000
  if '9' in x:
    return 1000000
  return x.count('Q')

N=int(input())
S=input()
for i in range(1,N+1):
  if N%i:
    continue
  F=1
  for j in range(i,N,i):
    for k in range(i):
      if S[k]!=S[j+k]:
        F=0
  if F:
    if f(S[:i])*i==N:
      print(S[:i])
      exit()
print(-1)
0