結果

問題 No.1747 Many Formulae 2
ユーザー lloyzlloyz
提出日時 2021-11-19 21:32:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 467 bytes
コンパイル時間 654 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 64,120 KB
最終ジャッジ日時 2024-06-10 08:00:19
合計ジャッジ時間 1,953 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,148 KB
testcase_01 AC 37 ms
52,196 KB
testcase_02 AC 43 ms
61,940 KB
testcase_03 AC 34 ms
51,876 KB
testcase_04 AC 38 ms
52,964 KB
testcase_05 AC 34 ms
52,556 KB
testcase_06 AC 35 ms
53,588 KB
testcase_07 AC 42 ms
61,368 KB
testcase_08 AC 35 ms
52,592 KB
testcase_09 AC 35 ms
52,744 KB
testcase_10 AC 34 ms
52,784 KB
testcase_11 AC 35 ms
53,280 KB
testcase_12 AC 35 ms
53,572 KB
testcase_13 AC 34 ms
53,016 KB
testcase_14 AC 36 ms
53,160 KB
testcase_15 AC 48 ms
64,120 KB
testcase_16 AC 46 ms
62,028 KB
testcase_17 WA -
testcase_18 AC 32 ms
52,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

n = len(S)
n -= 1
ans = 0
for bit in range(1 << n):
    pre = 0
    tmp = 0
    for i in range(n):
        if (bit >> i) & 1:
            tmp += int(S[pre:i + 1])
            pre = i + 1
        if i == n - 1:
            tmp += int(S[pre:])
    flag = True
    if tmp % 2 == 0:
        continue
    f = 3
    while f * f <= tmp:
        if tmp % f == 0:
            flag = False
            break
        f += 2
    if flag:
        ans += 1
print(ans)
0