結果

問題 No.1747 Many Formulae 2
ユーザー nok0nok0
提出日時 2021-11-11 00:04:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 380 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 69,500 KB
最終ジャッジ日時 2024-06-10 06:59:07
合計ジャッジ時間 1,794 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,460 KB
testcase_01 AC 38 ms
52,532 KB
testcase_02 AC 56 ms
68,144 KB
testcase_03 AC 36 ms
52,672 KB
testcase_04 AC 46 ms
60,164 KB
testcase_05 AC 38 ms
53,536 KB
testcase_06 AC 40 ms
52,604 KB
testcase_07 AC 50 ms
63,808 KB
testcase_08 AC 40 ms
52,524 KB
testcase_09 AC 39 ms
53,020 KB
testcase_10 AC 39 ms
53,876 KB
testcase_11 AC 39 ms
54,748 KB
testcase_12 AC 38 ms
53,060 KB
testcase_13 AC 38 ms
53,816 KB
testcase_14 AC 37 ms
52,892 KB
testcase_15 AC 59 ms
69,500 KB
testcase_16 AC 52 ms
64,300 KB
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_prime(x):
    if x == 2:
        return 0
    for i in range(2, int(x ** 0.5) + 1):
        if x % i == 0:
            return 0
    return 1


res = 0
s = input()
n = len(s)
for b in range(1 << (n - 1)):
    t = []
    for i in range(n):
        t.append(s[i])
        if i < n - 1 and b >> i & 1:
            t.append('+')
    res += is_prime(eval(''.join(t)))
print(res)
0