結果

問題 No.1022 Power Equation
ユーザー chocoruskchocorusk
提出日時 2020-02-25 12:53:27
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 246 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 421,152 KB
最終ジャッジ日時 2024-05-08 01:58:21
合計ジャッジ時間 4,228 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 276 ms
119,556 KB
testcase_01 AC 105 ms
76,672 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

t=int(input())
for _ in range(t):
  n=int(input())
  ans=0
  mp={}
  for a in range(1, n+1):
    for b in range(1, n+1):
      x=a**b
      if x in mp:
        mp[x]+=1
      else:
        mp[x]=1
  for x in mp.values():
    ans+=x*x
  print(ans)
0