結果

問題 No.1747 Many Formulae 2
ユーザー kyskys
提出日時 2021-11-19 21:28:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 977 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 63,960 KB
最終ジャッジ日時 2024-12-31 21:17:02
合計ジャッジ時間 2,057 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
def iinput(): return int(input())
def sinput(): return input().rstrip()
def i0input(): return int(input()) - 1
def linput(): return list(input().split())
def liinput(): return list(map(int, input().split()))
def miinput(): return map(int, input().split())
def li0input(): return list(map(lambda x: int(x) - 1, input().split()))
def mi0input(): return map(lambda x: int(x) - 1, input().split())
INF = 10**20
MOD = 1000000007

S = sinput()
N = len(S) - 1

if N == 0:
    if S == '2' or S == '3' or S == '5' or S == '7':
        print(1)
    else:
        print(0)
    exit()
ans = 1 << N
for i in range(1 << N):
    tmp = [S[0]]
    for j in range(N):
        if (i >> j) & 1:
            tmp.append(S[j + 1])
        else:
            tmp[-1] += S[j + 1]
    res = 0
    for t in tmp:
        res += int(t)
    tmp = 2
    while tmp * tmp <= res:
        if res % tmp == 0:
            ans -= 1
            break
        tmp += 1
print(ans)
0