結果

問題 No.537 ユーザーID
ユーザー liny_tailliny_tail
提出日時 2020-09-15 23:19:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 675 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 69,792 KB
最終ジャッジ日時 2024-06-22 02:50:43
合計ジャッジ時間 5,127 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
17,824 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 25 ms
10,880 KB
testcase_05 AC 86 ms
12,032 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 25 ms
10,880 KB
testcase_08 AC 25 ms
10,880 KB
testcase_09 WA -
testcase_10 AC 25 ms
10,880 KB
testcase_11 AC 25 ms
10,752 KB
testcase_12 WA -
testcase_13 AC 25 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 25 ms
10,752 KB
testcase_16 AC 26 ms
10,880 KB
testcase_17 AC 25 ms
10,752 KB
testcase_18 AC 28 ms
10,880 KB
testcase_19 AC 27 ms
10,752 KB
testcase_20 WA -
testcase_21 AC 27 ms
10,752 KB
testcase_22 AC 27 ms
10,752 KB
testcase_23 AC 40 ms
11,264 KB
testcase_24 AC 26 ms
10,880 KB
testcase_25 AC 32 ms
11,008 KB
testcase_26 TLE -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

def fint(number):
  lst = [1]
  
  while True:
    if number % 2 == 0:
      lst.append(2)
      number //= 2
    else:
      break
  
  num = 3
  
  while True:
    #print num
    if number ** 0.5 < num:
      lst.append(number)
      break
    
    if number % num == 0:
      lst.append(num)
      number //= num
    else:
      num += 2
  
  return lst

a = int(input().strip())

lst = fint(a)
lst2 = []
for i in range(2, len(lst)):
  for j in itertools.combinations(lst, r=i):
    tmp = eval('*'.join([str(k) for k in j]))
    lst2.append([tmp, a // tmp])
    lst2.append([a // tmp, tmp])

print(len(set([''.join([str(j) for j in i]) for i in lst2])))
0