結果

問題 No.1747 Many Formulae 2
ユーザー KudeKude
提出日時 2021-11-19 21:25:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 427 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 62,356 KB
最終ジャッジ日時 2024-06-10 07:44:35
合計ジャッジ時間 1,666 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,088 KB
testcase_01 AC 34 ms
52,688 KB
testcase_02 AC 41 ms
61,944 KB
testcase_03 AC 33 ms
52,492 KB
testcase_04 AC 34 ms
58,056 KB
testcase_05 AC 31 ms
53,504 KB
testcase_06 AC 32 ms
52,128 KB
testcase_07 AC 39 ms
59,352 KB
testcase_08 AC 33 ms
52,744 KB
testcase_09 AC 32 ms
53,252 KB
testcase_10 AC 33 ms
52,304 KB
testcase_11 AC 35 ms
52,648 KB
testcase_12 AC 33 ms
52,808 KB
testcase_13 AC 32 ms
52,808 KB
testcase_14 AC 35 ms
52,964 KB
testcase_15 AC 42 ms
61,272 KB
testcase_16 AC 42 ms
62,356 KB
testcase_17 AC 33 ms
53,100 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_prime(x):
    i = 2
    while i * i <= x:
        if x % i == 0:
            return False
        i += 1
    return True

s = list(map(int, input()))
n = len(s)
ans = 0
for b in range(1 << n - 1):
    x = 0
    tmp = s[0]
    for i in range(n - 1):
        if b >> i & 1:
            x += tmp
            tmp = 0
        else:
            tmp *= 10
        tmp += s[i + 1]
    x += tmp
    ans += is_prime(x)

print(ans)
0