結果

問題 No.1747 Many Formulae 2
ユーザー flippergoflippergo
提出日時 2024-12-20 09:33:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 418 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 68,716 KB
最終ジャッジ日時 2024-12-20 09:33:11
合計ジャッジ時間 1,977 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,460 KB
testcase_01 AC 39 ms
52,556 KB
testcase_02 AC 57 ms
67,856 KB
testcase_03 AC 41 ms
53,324 KB
testcase_04 AC 46 ms
61,172 KB
testcase_05 AC 39 ms
52,068 KB
testcase_06 AC 39 ms
53,352 KB
testcase_07 AC 52 ms
63,996 KB
testcase_08 AC 39 ms
53,420 KB
testcase_09 AC 39 ms
52,392 KB
testcase_10 AC 40 ms
53,044 KB
testcase_11 AC 42 ms
55,420 KB
testcase_12 AC 40 ms
52,136 KB
testcase_13 AC 41 ms
52,596 KB
testcase_14 AC 42 ms
53,568 KB
testcase_15 AC 62 ms
68,716 KB
testcase_16 AC 55 ms
64,160 KB
testcase_17 AC 41 ms
53,320 KB
testcase_18 AC 40 ms
52,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input().strip()
K = len(S)
ans = 0
if S!="1":
    for n in range(1<<(K-1)):
        T = S[:]
        for k in range(K-1):
            if (n>>k)&1:
                T = T[:K-2-k+1]+"+"+T[K-2-k+1:]
        x = eval(T)
        flag =True
        for i in range(2,x+1):
            if i*i>x:break
            if x%i==0:
                flag = False
                break
        if flag:
            ans += 1
print(ans)
0