結果

問題 No.1747 Many Formulae 2
ユーザー suosuo
提出日時 2021-11-19 21:28:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 64,640 KB
最終ジャッジ日時 2024-06-10 07:52:34
合計ジャッジ時間 1,623 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,608 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 48 ms
64,128 KB
testcase_03 AC 35 ms
52,480 KB
testcase_04 AC 39 ms
58,880 KB
testcase_05 AC 35 ms
52,096 KB
testcase_06 AC 34 ms
52,180 KB
testcase_07 AC 46 ms
62,720 KB
testcase_08 AC 35 ms
52,608 KB
testcase_09 AC 35 ms
52,096 KB
testcase_10 AC 33 ms
52,224 KB
testcase_11 AC 36 ms
53,120 KB
testcase_12 AC 33 ms
52,736 KB
testcase_13 AC 35 ms
52,224 KB
testcase_14 AC 33 ms
52,224 KB
testcase_15 AC 47 ms
64,640 KB
testcase_16 AC 45 ms
63,232 KB
testcase_17 AC 35 ms
52,096 KB
testcase_18 AC 34 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = str(input())
l = len(s)
p = []
for i in range(2**(l)//2):
  ad = format(i,'010b')[::-1][:l]
  now = 0
  par = 0
  for j in range(l-1):
    par *= 10
    par += int(s[j])
    if ad[j] == '1':
      now += par
      par = 0
  par *= 10
  par += int(s[-1])
  now += par
  p.append(now)
ans = 0
for i in p:
  if i == 1:
    continue
  for j in range(2,int(i**(1/2))+1):
    if i % j == 0:
      break
  else:
    ans += 1
print(ans)
0