結果

問題 No.1747 Many Formulae 2
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-11-19 22:35:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 449 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 65,124 KB
最終ジャッジ日時 2025-01-01 19:34:36
合計ジャッジ時間 2,027 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,908 KB
testcase_01 AC 34 ms
52,708 KB
testcase_02 AC 40 ms
63,108 KB
testcase_03 AC 33 ms
53,304 KB
testcase_04 AC 37 ms
58,436 KB
testcase_05 AC 33 ms
53,028 KB
testcase_06 AC 31 ms
53,160 KB
testcase_07 AC 38 ms
62,168 KB
testcase_08 AC 31 ms
53,344 KB
testcase_09 AC 33 ms
53,564 KB
testcase_10 AC 33 ms
52,960 KB
testcase_11 AC 34 ms
53,016 KB
testcase_12 AC 33 ms
52,360 KB
testcase_13 AC 32 ms
53,400 KB
testcase_14 AC 33 ms
52,464 KB
testcase_15 AC 45 ms
65,124 KB
testcase_16 AC 40 ms
62,188 KB
testcase_17 AC 31 ms
53,200 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = list(input())
for i in range(len(S)):
    S[i] = int(S[i])
ans = 0
for i in range(1<<len(S)-1):
    num = 0
    now = S[0]
    for j in range(len(S)-1):
        if i >> j & 1:
            num += now
            now = S[j+1]
        else:
            now *= 10
            now += S[j+1]
    num += now
    prime = 1
    for j in range(2,int(num**0.5)+1):
        if num%j == 0:
            prime = 0
            break
    ans += prime
print(ans)
0