結果

問題 No.1747 Many Formulae 2
ユーザー H20H20
提出日時 2021-11-19 22:09:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 498 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 62,720 KB
最終ジャッジ日時 2024-06-10 09:11:22
合計ジャッジ時間 1,485 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,096 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 45 ms
62,720 KB
testcase_03 AC 33 ms
51,712 KB
testcase_04 AC 36 ms
58,112 KB
testcase_05 AC 33 ms
51,712 KB
testcase_06 AC 33 ms
51,712 KB
testcase_07 AC 43 ms
61,216 KB
testcase_08 AC 33 ms
52,096 KB
testcase_09 AC 32 ms
52,236 KB
testcase_10 AC 31 ms
51,968 KB
testcase_11 AC 34 ms
52,224 KB
testcase_12 AC 35 ms
51,712 KB
testcase_13 AC 33 ms
52,480 KB
testcase_14 AC 31 ms
52,096 KB
testcase_15 AC 43 ms
62,208 KB
testcase_16 AC 43 ms
61,824 KB
testcase_17 AC 32 ms
51,712 KB
testcase_18 AC 32 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()


#引数nが素数かどうかを判定
def is_prime(n):
    for i in range(2, n + 1):
        if i * i > n:
            break
        if n % i == 0:
            return False
    return n != 1


cnt = 0
for i in range(2 ** (len(S)-1)):
    v = 0
    temp = int(S[0])
    for j in range(len(S)-1):
        if ((i >> j) & 1):
            v+=temp
            temp = int(S[j+1])
        else:
            temp = temp*10+int(S[j+1])
    v+=temp
    if is_prime(v):
        cnt+=1
print(cnt)
0